zoukankan      html  css  js  c++  java
  • objectivec enum 与 typedef

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

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

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

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

    大同小异,

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

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

    1  enum direction {north, south, east, west};   
    3  enum direction facing = north;  
    4 
    5  typedef enum {north, south, east, west} direction;    
    7  direction facing = north; 


  • 相关阅读:
    15、编写ORM
    14、细说协程
    COOKIE欺骗
    聪明的小羊
    re.S函数 python3
    截断上传
    sql百态01-post
    Why not?
    随机字符的本地爆破
    HTTP协议-请求头,响应头
  • 原文地址:https://www.cnblogs.com/54007/p/1952370.html
Copyright © 2011-2022 走看看