`
反求诸己
  • 浏览: 534869 次
  • 性别: Icon_minigender_1
  • 来自: 湖南娄底
社区版块
存档分类
最新评论

objective-c enum 与 typedef

 
阅读更多

objective-c enum 与 typedef

今天看到enum 和 typedef, 在两个小节中书中分别出现了2个例子,如下

enum direction {north, south, east, west};

typedef enum {north, south, east, west} direction;

不禁产生疑问,这两个有什么区别,仔细对照了一下,发现是这样的:

大同小异,

同: 都是申明了一个枚举类型。

异:在使用该枚举类型定义变量的时候,语法不一样,举例如下:

 

 

 enum direction {north, south, east, west};    

 enum direction facing = north;  

 

 typedef enum {north, south, east, west} direction;     

 direction facing = north;

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics