[关闭]
@songying 2019-01-27T21:40:10.000000Z 字数 340 阅读 1098

c++ 结构体

c++


定义

  1. struct custom_type {
  2. type member_name1;
  3. typ member_name2;
  4. typ member_name3;
  5. ...
  6. };
  7. custom_type val;
  8. val.member_name1; 访问结构体成员

结构体作为参数

结构体传参方式与其余类型的变量和指针类似

  1. tyoe func_name( struct custom_type val){
  2. }

指向结构体的指针

  1. struct custom_type *ptr; // 定义一个指向结构体类型的指针
  2. ptr->member_name1; // 访问结构体内元素

typedef + struct

  1. typedef custom_name other_name;
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注