gpt4 book ai didi

c++ - 为什么这不是 POD 类型?

转载 作者:可可西里 更新时间:2023-11-01 16:30:22 24 4
gpt4 key购买 nike

我在 g++ 4.6.2 (mingw) 上用 g++ -std=c++0x pod_test.cpp 运行了下面的代码。我在 A4 上遇到错误。为什么不是 A4 POD?

#include <iostream>
#include <new>
#include <cstring>

using namespace std;

struct A {
int a, b;
char c;
};
struct A2 {
short buf[1];
};
struct A3:A {
};
struct A4:A {
short buf[1];
};
static_assert(std::is_pod<A>::value, "Struct must be a POD type");
static_assert(std::is_pod<A2>::value, "Struct must be a POD type");
static_assert(std::is_pod<A3>::value, "Struct must be a POD type");
static_assert(std::is_pod<A4>::value, "Struct must be a POD type");

int main(){}

最佳答案

它不是 POD,因为它违反了标准布局类的规则:

— either has no non-static data members in the most derived class and at most one base class with non-static data members, or has no base classes with non-static data members

继承格中只有一个类可以有非静态数据成员。在这种情况下,两者 AA4 有。

关于c++ - 为什么这不是 POD 类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9585720/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com