考虑到
struct C {
C() { printf("C::C()\n" ); }
C(int) { printf("C::C(int)\n" ); }
C( const C& ) { printf("copy-constructed\n"); }
};
和一个模板函数
template< typename T > void foo(){
// default-construct a temporary variable of type T
// this is what the question is about.
T t1; // will be uninitialized for e.g. int, float, ...
T t2 = T(); // will call default constructor, then copy constructor... :(
T t3(); // deception: this is a local function declaration :(
}
int main(){
foo<int>();
foo<C >();
}
看着t1
,它不会在T
is eg时被初始化int
。另一方面,t2
将从默认构造的临时复制构造。
问题:除了 template-fu 之外,C++ 中是否可以默认构造一个泛型变量?