调整向量大小时,它将调用构造函数然后销毁它。
struct CAT
{
CAT(){cout<<"CAT()"<<endl;}
CAT(const CAT& c){cout<<"CAT(const CAT& c)"<<endl;};
~CAT(){cout<<"~CAT()"<<endl;};
};
int main()
{
vector<CAT> vc(6);
cout<<"-----------------"<<endl;
vc.resize(3);
cout<<"-----------------"<<endl;
}
输出:
$./m
CAT()
CAT(const CAT& c)
CAT(const CAT& c)
CAT(const CAT& c)
CAT(const CAT& c)
CAT(const CAT& c)
CAT(const CAT& c)
~CAT()
-----------------
CAT() //why resize will call constructor?
~CAT()
~CAT()
~CAT()
~CAT()
-----------------
~CAT()
~CAT()
~CAT()
我正在使用ubuntu 13.10和gcc4.8
答案 0 :(得分:6)
这是因为resize
的可选参数。
这是我在GCC 4.8中的实现:
void
resize(size_type __new_size, value_type __x = value_type())
{
if (__new_size > size())
insert(end(), __new_size - size(), __x);
else if (__new_size < size())
_M_erase_at_end(this->_M_impl._M_start + __new_size);
}
仔细查看value_type __x = value_type()
。
来自http://www.cplusplus.com/reference/vector/vector/resize/:
void resize (size_type n, value_type val = value_type());
答案 1 :(得分:5)
在C ++ 11之前,resize
有一个默认的第二个参数来提供初始化新元素的值:
void resize(size_type sz, T c = T());
解释了为什么你会看到一个额外的对象被创建和销毁。
在现代库中,它被两个重载替换
void resize(size_type sz);
void resize(size_type sz, const T& c);
所以你不应该看到任何额外的对象,除非你明确提供一个。在构建过程中,您还应该看到默认初始化,而不是复制初始化。
答案 2 :(得分:3)
vector::resize
的实现可能会创建一个临时的默认初始化对象,即使在缩小时也是如此,因为它在升迁时使用它来初始化新元素。