我们可以使用一个结构的对象作为另一个结构或联合的成员吗?

发布于 2024-10-04 08:18:30 字数 35 浏览 2 评论 0原文

我们可以使用一个结构的对象作为另一个结构或联合的成员吗?

Can we use objects of one structure as members of another structure or union?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

爱的故事 2024-10-11 08:18:30

是的当然。结构体是类型,结构体的字段可以具有任何有效类型:

struct Point
{
  int x, y;
};

struct Rectangle
{
 struct Point top_left;
 struct Point bottom_right;
};

这是非常基本的,也是 C 的许多表达能力的来源。

Yes, of course. Structs are types, and fields of structs can have any valid type:

struct Point
{
  int x, y;
};

struct Rectangle
{
 struct Point top_left;
 struct Point bottom_right;
};

This is very basic, and where C gets a lot of its expressive powers from.

驱逐舰岛风号 2024-10-11 08:18:30

是的当然:

struct address {
    char street[100];
    int number;
};

struct people {
    char name[100];
    struct address addr;
};

Yes, of course:

struct address {
    char street[100];
    int number;
};

struct people {
    char name[100];
    struct address addr;
};
喜爱纠缠 2024-10-11 08:18:30

是的,你可以。简短的问题 - 简短的回答:)

Yes, you can. Short question - short answer :)

挽心 2024-10-11 08:18:30

是的。例子:

typedef struct MyStruct1
{
  int a;
  float b;
}MyStruct;

typedef struct AnotherStruct
{
  int number;
  MyStruct m_field2;
}AnotherStruct;

int main()
{
  AnotherStruct obj1;
  obj1.number = 10;
  obj1.m_field2.a = 10;
  obj1.m_field2.b = 34.43;
  return 0;
}

Yes. Example:

typedef struct MyStruct1
{
  int a;
  float b;
}MyStruct;

typedef struct AnotherStruct
{
  int number;
  MyStruct m_field2;
}AnotherStruct;

int main()
{
  AnotherStruct obj1;
  obj1.number = 10;
  obj1.m_field2.a = 10;
  obj1.m_field2.b = 34.43;
  return 0;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文