标签: c++
在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
为什么一个班级不是POD,为什么至少需要一个数据成员?