我发现自己对 C++ 中的零初始化规则感到困惑。使用此代码将 data_ 初始化为零?我相信它应该是,并用我的编译器查看生成的汇编代码,但我知道这不是必需的保证。
#include <iostream>
class test
{
public:
test();
int data_;
};
// Does this zero initialize data_ ?
test::test() : data_()
{
}
int main()
{
test t;
std:: cout << t.data_;
}