在https://stackoverflow.com/a/15483397/368896中,张贴者指出——如果我没看错的话——必须至少存在一个数据成员才能使类不成为 POD。
class X {}; // This class is a POD
class Y { int y; } // This class is not, because of the presence of the data member
为什么需要至少 1 个数据成员才能使一个类不是 POD?
在https://stackoverflow.com/a/15483397/368896中,张贴者指出——如果我没看错的话——必须至少存在一个数据成员才能使类不成为 POD。
class X {}; // This class is a POD
class Y { int y; } // This class is not, because of the presence of the data member
为什么需要至少 1 个数据成员才能使一个类不是 POD?