52個有效方法(5) - 用枚舉表示狀態、選項、狀態碼

枚舉(enum)

  • 枚舉(enum)只是一種常量的命名方式。是C語言中的一種基本數據類型,是一個"被命名的整型常量"的集合。網絡

  • 規範的定義代碼中的狀態、選項等「常量」。url

  • 不參與內存的佔用和釋放。code

  • 在開發中使用枚舉的目的,是爲了增長代碼的可讀性。對象

NS_ENUMNS_OPTIONS 宏來定義枚舉類型,並指明其底層數據類型。

  • NS_ENUMip

    NS_ENUM通常用來定義默認的枚舉值內存

/* NS_ENUM supports the use of one or two arguments. The first argument is always the integer type used for the values of the enum. The second argument is an optional type name for the macro. When specifying a type name, you must precede the macro with 'typedef' like so:
 
typedef NS_ENUM(NSInteger, NSComparisonResult) {
    ...
};
 
If you do not specify a type name, do not use 'typedef'. For example:
 
NS_ENUM(NSInteger) {
    ...
};
*/
 
#define NS_ENUM(...) CF_ENUM(__VA_ARGS__)
  • NS_OPTIONSci

    NS_OPTIONS通常用來定義位移相關操做的枚舉值開發

    #define NS_OPTIONS(_type, _name) CF_OPTIONS(_type, _name)

枚舉(Enum)與狀態(states)

某個對象所經歷的各類狀態能夠定義爲一個的枚舉集(enumeration set)get

typedef NS_ENUM(NSInteger, UIViewAnimationTransition) {
    UIViewAnimationTransitionNone,
    UIViewAnimationTransitionFlipFromLeft,
    UIViewAnimationTransitionFlipFromRight,
    UIViewAnimationTransitionCurlUp,
    UIViewAnimationTransitionCurlDown,
};
  • 編譯器會爲每一個枚舉值分配一個獨有的編號,從0開始,依次加1編譯器

  • 一個字節最多可表示0~255256種(2^8)枚舉變量。

枚舉(enum)與選項(options)

在定義選項的時候,應該使用枚舉類型。若這些選項能夠彼此組合,則更應如此。只要枚舉定義得對,各選項之間就能夠經過 「按位或操做符」來組合。

typedef NS_OPTIONS(NSUInteger, UIViewAutoresizing) {
    UIViewAutoresizingNone                 = 0,
    UIViewAutoresizingFlexibleLeftMargin   = 1 << 0,
    UIViewAutoresizingFlexibleWidth        = 1 << 1,
    UIViewAutoresizingFlexibleRightMargin  = 1 << 2,
    UIViewAutoresizingFlexibleTopMargin    = 1 << 3,
    UIViewAutoresizingFlexibleHeight       = 1 << 4,
    UIViewAutoresizingFlexibleBottomMargin = 1 << 5
};
  • 選項是用位運算的方式定義的
UIViewAutoresizingNone                            0 0 0 0 0 0 0 0
UIViewAutoresizingFlexibleLeftMargin              0 0 0 0 0 0 0 1
UIViewAutoresizingFlexibleWidth                   0 0 0 0 0 0 1 0
UIViewAutoresizingFlexibleRightMargin             0 0 0 0 0 1 0 0
UIViewAutoresizingFlexibleTopMargin               0 0 0 0 1 0 0 0
UIViewAutoresizingFlexibleHeight                  0 0 0 1 0 0 0 0
UIViewAutoresizingFlexibleBottomMargin            0 0 1 0 0 0 0 0
UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight 
                                                  0 0 0 1 0 0 1 0
  • <<帶符號左移 (n<<2 將整型值帶符號左移2位 )
    • 將一個運算符對象的各二進制位所有左移若干位(左邊的二進制位丟棄,右邊補0

    • 操做數每左移一位,至關於該數乘以2

    • 例如:3<<2 後,結果爲12
      3的二進制位11,左移兩位後,右邊補2個0就是11001100轉爲10進製爲12

    • 左移操做就至關於22次方×3。 每左移1位次方就增1

  • >>帶符號右移 (n>>2 將整型值帶符號右移2位 )

    • 將一個數的各二進制位所有右移若干位,正數左補0,負數左補1,右邊丟棄。

    • 操做數每右移一位,至關於該數除以2 ,而後取整

    • 例如:9>>1 後,結果爲4
      9的二進制爲1001,右移1位後,左正數補0,右邊丟棄。結果爲 0100。轉爲10進制後爲4

枚舉(enum)與狀態碼(codes)

枚舉用法也可用於 switch 語句。在處理枚舉類型的switch語句中不要實現default分支。

typedef NS_ENUM(NSUInteger, EOCConnectionState) {
    EOCConnectionStateDisconnected,
    EOCConnectionStateConnecting,
    EOCConnectionStateConnected
};

switch (_currentState) {
    EOCConnectionStateDisconnected:
      //...
      break;
    EOCConnectionStateConnecting:
      //...
      break;
    EOCConnectionStateConnected:
      //...
      break;
}

要點

  1. 應該用枚舉表示狀態機的狀態、傳遞給方法的選項以及狀態碼等值,給這些值起個易懂的名字,就像監聽網絡狀態的枚舉。

  2. 若是把傳遞給某個方法的選項表示爲枚舉類型,而多個選項又可同時使用,那麼就將各選項定義爲2的冪,以便經過按位或操做將其組合起來。

  3. NS_ENUMNS_OPTIONS 宏來定義枚舉類型,並指明其底層數據類型。這樣能夠確保枚舉是用開發者所選的底層數據類型實現出來的,而不會採用編譯器所選的類型。

  4. 在處理枚舉類型的switch語句中不要實現default分支。這樣的話,加入新枚舉以後,編譯器就會提示開發者:switch語句並未處理全部枚舉。

相關文章
相關標籤/搜索