struct 和enum的用法

typedef enum{
  k1,k2,k3,k4
 }PieceT;
 PieceT aa=k3;  //这就是枚举类型的用法
 cout<<aa<<endl;
 
 //以下三种结构的用法
 struct node{
  int a;
 }no1;
 no1.a=22;
 cout<<no1.a<<endl;
 
 typedef struct{
  int aa;
 }no2;
 no2 tt;
 tt.aa=33;
 cout<<tt.aa<<endl;
 
 struct node2{
  int aaa;
 };
 struct node2 ttt;
 ttt.aaa=44;
 cout<<ttt.aaa<<endl;

可以看看以上三种结构的用法的区别

你可能感兴趣的:(enum,struct)