gpt4 book ai didi

c++ - push_back 在增加容量之前推送元素?

转载 作者:行者123 更新时间:2023-11-30 00:55:12 26 4
gpt4 key购买 nike

class A
{
public:
A():a(0)
{}
A(int x):a(x)
{
cout<<"convert"<<endl;
}
A(const A& rhs):a(rhs.a)
{
cout<<"copy: "<<a<<endl;
}
void print()
{
cout<<a<<endl;
}
void Set(int x)
{
a=x;

}
private:
int a;
};

int main()
{
vector<A>vec2(2,A(100));
cout<<"the size: "<<vec2.size()<<" the capacity: "<<vec2.capacity()<<endl;
vec2.push_back(17);
for(int i=0; i<vec2.capacity();i++)
{
vec2[i].print();
}
cout<<"the size: "<<vec2.size()<<" the capacity: "<<vec2.capacity()<<endl;
}
convertcopy: 100copy: 100the size: 2  the capacity: 2convertcopy: 17copy: 100copy: 100100100170

why this happened

copy: 17
copy: 100
copy: 100

好像容量是 5 而不是 4,而且容量在我要插入的元素插入 vector 后增加了,我一定是错的,有人可以告诉我更多细节吗?

最佳答案

如果您了解 vector 的大小和容量之间的区别,您就会意识到,当需要增加容量时,需要将整个 vector 移动到内存中的其他位置。

当 vector 元素从旧 vector “移动”到新 vector 时,就会调用复制构造函数。如果您添加一个带有一些调试功能的析构函数,它可能对您更有意义。

还有...

for(int i=0; i<vec2.capacity();i++)

... 这不是一个好主意。您正在访问超出有效 vector 数据的末尾。

关于c++ - push_back 在增加容量之前推送元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12808077/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com