我在数组方面遇到了一些问题,因为我有我的 .h 和 .cpp 文件,所以我是否按照我们通常声明函数的方式声明它们?
pointtwod.h
class PointTwoD
{
private:
int xcord,ycord;
float civIndex;
LocationData locationdata;
public:
PointTwoD();
PointTwoD(int, int, string, int, int, float, float, float);
//set/mutator function
void setxcord(int);
void setycord(int);
//get/accessor function
int getxcord();
int getycord();
void storedata(int, int, float);
};
pointtwod.cpp
//declaring array
void PointTwoD::storedata(int xord[], int yord[], float civ[])
{
int i=0;
//int size = sizeof(xord)/sizeof(xord[0]);
int size = 100;
for(i=0;i<100;i++)
{
cout << "key in num for xord: " << endl;
xord[i] = xcord;
cout << "key in value for yord: " << endl;
xord[i] = ycord;
cout << "key in value for civ: " << endl;
civ[i] = locationdata.getCivIndex();
};
}
int main()
{
PointTwoD pointtwod;
pointtwod.storedata(xord[], yord[], civ[]);
}
当我编译我得到的错误消息时,即使我输入了 int xord[]; 在我的 PointTwoD.h 文件中:
PointTwoDImp.cpp:99:6: error: prototype for 'void PointTwoD::storedata(int*,int*,float*) does not match any in class 'PointTwoD'
PointTwoD.h:48:8: error: candidate is: void PointTwoD::storedata(int, int, float)
PointTwoDImp.cpp: 135:22: error: 'xord' was not declared in this scope
PointTwoDImp.cpp: 135:27: expected primary-expression before ']' token
PointTwoDImp.cpp: 135:30: error: 'yord' was not declared in this scope
PointTwoDImp.cpp: 135:35: expected primary-expression before ']' token
PointTwoDImp.cpp: 135:38: error: 'civ' was not declared in this scope
PointTwoDImp.cpp: 135:42: expected primary-expression before ']' token