次のコードをテストしました。
#include <iostream>
#include <vector>
class foo {
public:
int m_data;
foo(int data) : m_data(data) {
std::cout << "parameterised constructor" << std::endl;
}
foo(const foo &other) : m_data(other.m_data) {
std::cout << "copy constructor" << std::endl;
}
};
main (int argc, char *argv[]) {
std::vector<foo> a(3, foo(3));
std::vector<foo> b(4, foo(4));
//std::vector<foo> b(3, foo(4));
std::cout << "a = b" << std::endl;
a = b;
return 0;
}
私は得る
parameterised constructor
copy constructor
copy constructor
copy constructor
parameterised constructor
copy constructor
copy constructor
copy constructor
copy constructor
a = b
copy constructor
copy constructor
copy constructor
copy constructor
std::vector<foo> b(4, foo(4));
ただし、コピーコンストラクターで置き換えると、std::vector<foo> b(3, foo(4));
呼び出されa = b
ず、出力は
parameterised constructor
copy constructor
copy constructor
copy constructor
parameterised constructor
copy constructor
copy constructor
copy constructor
a = b
この場合、コピー コンストラクターが呼び出されないのはなぜですか?
g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1 を使用しています