我正在尝试了解 C++ STL 中的向量...
我有一堂课temp
:
class temp
{
private :
int a;
public :
//temp() {}
temp(int a)
{
std::cout<<"ctor called"<<std::endl;
this->a=a;
}
void setA(int a)
{
this->a=a;
}
int getA()
{
return a;
}
};
现在,主要是,我写道:
int main() {
vector<temp> v;
v.resize(7,temp(5));
for(int i=0;i<7;i++) {
v[i].setA(i);
}
for(int i=0;i<7;i++) {
cout<<v[i].getA()<<"\t";
}
}
我得到的输出是
ctor called
0 1 2 3 4 5 6
我想知道为什么即使在创建 7 个不同的 temp 类对象时构造函数也只调用一次?