如何在C ++中创建结构体的结构

时间:2010-05-22 18:19:52

标签: c++ arrays struct

结构可以包含其他结构吗?

我想创建一个包含四个其他结构数组的结构。这可能吗?代码会是什么样的?

3 个答案:

答案 0 :(得分:8)

是的,你可以。例如,此结构S2包含四个S1对象的数组:

struct S1 { int a; };

struct S2
{
    S1 the_array[4];
};

答案 1 :(得分:4)

当然,为什么不呢。

struct foo {
    struct {
        int a;
        char *b;
    } bar[4];
} baz;

baz.bar[1].a = 5;

答案 2 :(得分:2)

是的,结构可以包含其他结构。例如:

struct sample {
  int i;
  char c;
};

struct b {
  struct sample first;
  struct sample second;
};