将数组指针传递给函数

时间:2017-01-28 21:18:52

标签: c++ arrays function pointers

我正在研究这个项目,实现我的面向对象编程,但在main.cpp结束时尝试调用display()函数时出现问题。我创建了一个名为rectangles的Rectangle对象,它是一个使用指针的数组。

基本上我要做的是将rectangles数组传递到display()函数中,这样我就可以从那里打印但是我收到了错误:

  • 无效的参数'考生是:void display(Rectangle *) void display(Rectangle * *)'
  • 没有匹配功能可以调用'显示'

我一直试图解决这个问题几个小时,似乎无法让它发挥作用。如果这是一个简单的错误,请道歉,但我希望得到一些关于如何使其发挥作用的意见。

"的main.cpp"

#include "Rectangle.h"
#include <iostream>
#include <iomanip>
#include <memory>
#include <ctime> //for the time function
#include <cstdlib> //for rand and srand

using namespace std;

const int ARRAY_SIZE = 21, //size of the array
          MIN_VALUE = 1, //min value for random numbers
          MAX_VALUE = 7; //max value for random numbers

void display(Rectangle*); //prototype for display function

int main() {

    unique_ptr<Rectangle> rectangles(new Rectangle[ARRAY_SIZE]);

    double rectWidth;   // local variable for width
    double rectLength;  // local variable for length

    //for random numbers:
    unsigned seed = time(0);
    srand(seed);

    //inputs random numbers into rectWidth and rectLength
    for(int i = 0; i < ARRAY_SIZE; i ++)
    {
        rectWidth = (rand() % (MAX_VALUE - MIN_VALUE + 1)) + MIN_VALUE; //sets random number to Width
        rectLength = (rand() % (MAX_VALUE - MIN_VALUE + 1)) + MIN_VALUE; //sets random number to Length

        rectangles->setWidth(rectWidth); //inputs Width to the setWidth function
        rectangles->setLength(rectLength); //inputs Length to the setLengh function
    }

    display(rectangles);

    return 0;
}

rectangle.cpp

#include "Rectangle.h"
#include <iostream>
#include<iomanip>
using namespace std;

Rectangle::Rectangle(double w, double len)   //constructor
{
    width = 0.0;
    length = 0.0;
}

Rectangle::~Rectangle()    //destructor
{

}

//******************************************************************
// setWidth assigns a value to the width member.
//**********************************************************************
void Rectangle::setWidth(double w)
{
    width = w;
}

//*********************************************************************
// setLength assigns a value to the length member.
//*********************************************************************
void Rectangle::setLength(double len)
{
    length = len;
}

//********************************************************************
// getWidth returns the value in the width member.
//********************************************************************
double Rectangle::getWidth() const
{
    return width;
}

//***********************************************************************
// getLength returns the value in the length member.
//***********************************************************************
double Rectangle::getLength() const
{
    return length;
}

//********************************************************************
//display will print out a report of the rectangles lable, hight, and width
//********************************************************************
void display(Rectangle* r[])
{
    const int ARRAY_SIZE = 21;
    Rectangle *rectangles[ARRAY_SIZE];

    for(int i = 0; i < ARRAY_SIZE; i++)
    {
        cout << "Square\n\n";
        cout << "================\n\n";
        cout << "Label  Width   Hight\n";
        cout <<"R" << setfill('0') << setw(4) << i+ 1 << "  ";
        cout << rectangles[i]->getWidth() << "  ";
        cout << rectangles[i]->getLength() <<endl;

        delete rectangles[i]; //to delete the pointer
    }

}

2 个答案:

答案 0 :(得分:4)

你有

void display(Rectangle*); //prototype for display function

并将其实现为

void display(Rectangle* r[])

但您使用此变量

调用它
unique_ptr<Rectangle> rectangles(new Rectangle[ARRAY_SIZE]);

显然,这与函数的声明或定义都不匹配。

编译器认为你有两个不同的函数,一个是指针,另一个是指向数组的指针一个指针数组。两者都不匹配智能指针。

答案 1 :(得分:0)

您已将display function参数声明为指针,但在定义它时,您将传递指针数组。