在 GCC 4.6.1 上,当我声明我自己的类型的实例时,该实例具有默认构造函数,并且如果我实例化该类型的对象并用大括号(如 Foo my_foo{}; )初始化它,则该类中的 POD 成员如果没有声明其他构造函数,则只会进行零初始化。如果除了默认构造函数之外没有其他构造函数,它们将像预期的那样初始化为零。
但是,在 GCC 4.7.3 上,零初始化以任何一种方式发生,这是我所期望的行为。
这里有什么区别?这是编译器错误吗?这两个 GCC 版本都支持 C++11 标准的默认构造函数。
没有必要坚持使用旧的 GCC 版本,但我想了解这里发生了什么。
注意:我默认主 ctor op=。并简单地复制ctor以保持类型可用于可变参数函数(clang要求将类分类为POD,尽管gcc让我摆脱使用可变参数函数的类型,即使使用用户定义的主ctor。如果你能告诉加分我为什么。)
这是一个示例程序来说明,包括底部的一些输出(来自使用两个 GCC 版本编译的二进制文件):
#include <cstdio>
// pod and pod_wctor are identical except that pod_wctor defines another ctor
struct pod {
pod( void ) = default;
pod( const pod& other ) = default;
pod& operator=( const pod& other ) = default;
int x,y,z;
};
struct pod_wctor {
pod_wctor( void ) = default;
pod_wctor( const int setx, const int sety, const int setz ) : x(setx), y(sety), z(setz) { }
pod_wctor( const pod_wctor& other ) = default;
pod_wctor& operator=( const pod_wctor& other ) = default;
int x,y,z;
};
int main ( void ) {
printf("the following shuold be uninitialized:\n");
pod pee;
printf( " %i,%i,%i\n", pee.x, pee.y, pee.z);
pod_wctor podtor;
printf( " %i,%i,%i\n", podtor.x, podtor.y, podtor.z);
printf("the following shuold be initialized to 0,0,0:\n");
pod peenit{};
printf( " %i,%i,%i\n", peenit.x, peenit.y, peenit.z );
pod_wctor podtornit{};
printf( " %i,%i,%i\n", podtornit.x, podtornit.y, podtornit.z );
return 0;
}
// compiled with: g++ m.cpp -std=gnu++0x
// g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1 (i386)
/****************** output *******************
the following shuold be uninitialized:
10381592,134513249,134520820
134513969,134513504,0
the following shuold be initialized to 0,0,0:
0,0,0
7367877,134513945,8724468
*********************************************/
// compiled with: g++ m.cpp -std=gnu++0x
// gcc version 4.7.3 (Ubuntu/Linaro 4.7.3-2ubuntu4) (i386)
/****************** output *******************
the following shuold be uninitialized:
-1218358300,-1217268232,134520832
134514450,1,-1079827548
the following shuold be initialized to 0,0,0:
0,0,0
0,0,0
*********************************************/