我实际上是在尝试在结构/类的构造函数中初始化向量。
我想出了这些,下面的内容编译没有错误,但是没有打印出向量中的内容。我想知道为什么,我们将不胜感激!
struct MyInt
{
friend ostream &operator<<(ostream &printout, const MyInt &Qn)
{
printout<< Qn.value << endl;
return printout;
}
int value;
MyInt (int value) : value (value) {}
};
struct MyStuff
{
std::vector<MyInt> values;
MyStuff () : values ()
{
values.reserve (10); // Reserve memory not to allocate it 10 times...
}
};
int main()
{
MyStuff *mystuff1;
MyStuff *mystuff2;
for (int i = 0; i < 10; ++i)
{
mystuff1->values.push_back (MyInt (i));
}
for (int x = 0; x < 5; ++x)
{
mystuff2->values.push_back (MyInt (x));
}
vector<MyInt>::iterator VITER;
for (VITER =mystuff1->values.begin(); VITER!=mystuff1->values.end(); ++VITER)
{
cout<< *VITER;
}
return 0;
}