我有一个名为 opf 的类,它包含两个在构造函数中初始化的数组。在主代码中,我创建了一个名为 curfile 的opf实例并运行其成员函数 testfunc()。变量 fnum 对 testfunc 的值很好,但是当我调用数组 ssplit 的成员时,我得到了很大的整数,我可以&# 39; t调用 flist 的成员,而不会向我抛出运行时错误。
//in main.cpp
int main()
{
opf curfile;
curfile.testfunc();
}
//in opf.h
class opf
{
private:
std::string defpath;
bool initf;
public:
opf();
~opf();
std::string flist[9];
int ssplit[9];
int fnum;
std::string path; //path including filename
std::string filename; //just the filename
std::vector<std::vector<std::string> > etoken; //(0, std::vector<std::string>(fnum))//all entries in file
std::ifstream instream; //read stream
std::ofstream outstream; //write stream
bool oread(std::string NIC, std::string year, std::string month);
void dcache();
void testfunc();
};
//in opf.c
opf::opf()
{
std::string flist[9];
flist[0] = "Year"; flist[1] = "Month"; flist[2] = "Date";
flist[3] = "Hour"; flist[4] = "Cell/Subject"; flist[5] = "Issue";
flist[6] = "Status"; flist[7] = "Comments"; flist[8] = "Completion Date";
fnum = sizeof(flist)/sizeof(*flist);
defpath = "\\\\*****************\\User\\TaskTracker\\";
int ssplit[9];
ssplit[0] = 4; ssplit[1] = 12; ssplit[2] = 18;
ssplit[3] = 24; ssplit[4] = 40; ssplit[5] = 80;
ssplit[6] = 120; ssplit[7] = 145; ssplit[8] = 160;
initf = true;
}
opf::~opf(){}
void opf::testfunc()
{
for(int i = 0; i < 9; i++)
{
std::cout << ssplit[i] << " ";
std::cout << flist[i] << " ";
}
return;
}
testfunc打印以下内容:
1853187679 2621539 2002153829 57503856 -2 2001877146 2001876114 0 8558496在抛出&#39; std :: length_error&#39;的实例后终止调用 what():basic_string resize
此应用程序已请求Runtime以不寻常的方式终止。
感谢任何建议......
答案 0 :(得分:1)
您在构造函数中声明ssplit
和flist
的版本,这会影响成员变量,因此成员变量永远不会获得分配给它的任何数据。只需从构造函数中删除flist
和ssplit
声明,以便最终将值分配给成员变量。
答案 1 :(得分:1)
您在构造函数中声明的数组是该构造函数的本地数组。你想要的是初始化你的类的成员数组;只需从构造函数实现中删除std::string flist[9];
和int ssplit[9];
。