C++ typedef的用法

typedef的用途: 为已有的数据类型重新命名。
<1. 基本类型>

int a=10;
//为整型重新命名
typedef int ZS;
ZS b=10;

<2. 结构体的使用>

  • a. 为结构体重新命名:
//ST---->等价于struct Student
typedef struct Student
{
   int id;
   char sex;
}ST;
  • b. 为结构体重新命名(指针类型)
//PST---->等价于struct Student*
typedef struct Student
{
   int id;
   char sex;
}* PST;
  • c. 混合使用
//PST等价于struct Student*
//ST等价于struct Student
typedef struct Student
{
   int id;
   char sex;
}* PST,ST;

你可能感兴趣的:(知识定义)