1. 程式人生 > >TypeScript 中enum 的作用

TypeScript 中enum 的作用

在實際應用中,有的變數只有幾種可能取值。如人的性別只有兩種可能取值,星期只有七種可能取值。在 C 語言中對這樣取值比較特殊的變數可以定義為列舉型別。所謂列舉是指將變數的值一一列舉出來,變數只限於列舉出來的值的範圍內取值。  定義一個變數是列舉型別,可以先定義一個列舉型別名,然後再說明這個變數是該列舉型別。

例如:

enum weekday{sun,mon,tue,wed,thu,fri,sat}; 
  • 1

定義了一個列舉型別名 enum weekday,然後定義變數為該列舉型別。  例如:

enum weekday day; 
  • 1

當然,也可以直接定義列舉型別變數。  例如:

enum weekday{sun,mon,tue,wed,thu,fri,sat} day; 
  • 1

其中,sum,mon,…,sat 等稱為列舉元素或列舉常量,它們是使用者定義的識別符號。  需要說明的有以下幾點。  ① 列舉元素不是變數,而是常數,因此列舉元素又稱為列舉常量。因為是常量,所以不能對列舉元素進行賦值。  ② 列舉元素作為常量,它們是有值的,C 語言在編譯時按定義的順序使它們的值為,1,2,…。  在上面的說明中,sun 的值為 0,mon 的值為 1,…sat 的值為 6,如果有賦值語句

day=mon; 
  • 1

則 day 變數的值為 1。當然,這個變數值是可以輸出的。  例如:

printf ("%d",day); 
  • 1

將輸出整數 1。  如果在定義列舉型別時指定元素的值,也可以改變列舉元素的值。  例如:

enum weekday{sun=7,mon=1,tue,wed,thu,fri,sat}day; 
  • 1

這時,sun 為 7,mon 為 1,以後元素順次加 1,所以 sat 就是 6 了。  ③ 列舉值可以用來作判斷。  例如:

if (day==mon) {…} 
if (day>mon) {…} 

列舉值的比較規則是:按其在說明時的順序號比較,如果說明時沒有人為指定,則第一個列舉元素的值認作 0。例如,mon>sun,sat>fri。  C 語言教程 ?216?  ④ 一個整數不能直接賦給一個列舉變數,必須強制進行型別轉換才能賦值。  例如:

day=(enum weekday)2; 

這個賦值的意思是,將順序號為 2 的列舉元素賦給 day,相當於workday=tue;  【例 11.6】從鍵盤輸入一個整數,顯示與該整數對應的列舉常量的英文名稱。

# include 
void main( ){ 
    enum weekday {sun,mon,tue,wed,thu,fri,sat} day; 
    int k; 
    printf("input a number(0--6)"); 
    scanf("%d",&k); 
    day=(enum weekday)k; 
    switch(day){ 
        case sun: printf("sunday/n");break; 
        case mon: printf("monday/n");break; 
        case tue: printf("tuesday/n");break; 
        case wed: printf("wednesday/n");break; 
        case thu: printf("thursday/n");break; 
        case fri: printf("friday/n");break; 
        case sat: printf("satday/n");break; 
        default: printf("input error/n");break; 
    } 
} 

程式執行結果為:

input a number(0--6)1 
monday 

在該程式中,列舉常量與列舉變數可以進行比較,但要輸出列舉常量對應的英文單詞,不能使用以下語句:

printf(" %s",mon); 

因為列舉常量 mon 為整數值,而非字串。  在使用列舉變數時,主要關心的不是它的值的大小,而是其表示的狀態。

注:以下全部程式碼的執行環境為VC++ 6.0

在程式中,可能需要為某些整數定義一個別名,我們可以利用預處理指令#define來完成這項工作,您的程式碼可能是:

#define MON  1
#define TUE  2
#define WED  3
#define THU  4
#define FRI  5
#define SAT  6
#define SUN  7

在此,我們定義一種新的資料型別,希望它能完成同樣的工作。這種新的資料型別叫列舉型。

  1. 定義一種新的資料型別 - 列舉型

以下程式碼定義了這種新的資料型別 - 列舉型

enum DAY{
      MON=1, TUE, WED, THU, FRI, SAT, SUN
};

(1) 列舉型是一個集合,集合中的元素(列舉成員)是一些命名的整型常量,元素之間用逗號,隔開。

(2) DAY是一個識別符號,可以看成這個集合的名字,是一個可選項,即是可有可無的項。

(3) 第一個列舉成員的預設值為整型的0,後續列舉成員的值在前一個成員上加1。

(4) 可以人為設定列舉成員的值,從而自定義某個範圍內的整數。

(5) 列舉型是預處理指令#define的替代。

(6) 型別定義以分號;結束。

  1. 使用列舉型別對變數進行宣告

新的資料型別定義完成後,它就可以使用了。我們已經見過最基本的資料型別,如:整型int, 單精度浮點型float, 雙精度浮點型double, 字元型char, 短整型short等等。用這些基本資料型別宣告變數通常是這樣:

char a; //變數a的型別均為字元型char  char letter;  int x,  y,  z; //變數x,y和z的型別均為整型int  int number;  double m, n;  double result; //變數result的型別為雙精度浮點型double

既然列舉也是一種資料型別,那麼它和基本資料型別一樣也可以對變數進行宣告。

方法一:列舉型別的定義和變數的宣告分開

enum DAY{
      MON=1, TUE, WED, THU, FRI, SAT, SUN
};




enum DAY yesterday;
enum DAY today;
enum DAY tomorrow; //變數 tomorrow的型別為列舉型enum DAY
enum DAY good_day, bad_day; //變數good_day和bad_day的型別均為列舉型enum DAY

方法二:型別定義與變數宣告同時進行:

enum //跟第一個定義不同的是,此處的標號DAY省略,這是允許的。這裡寫程式碼片

{
    saturday,
    sunday = 0,
    monday,
    tuesday,
    wednesday,
    thursday,
    friday
} workday; //變數workday的型別為列舉型enum DAY
enum week { Mon=1, Tue, Wed, Thu, Fri Sat, Sun} days; //變數days的型別為列舉型enum week




enum BOOLEAN { false, true } end_flag, match_flag; //定義列舉型別並聲明瞭兩個列舉型變數

方法三:用typedef關鍵字將列舉型別定義成別名,並利用該別名進行變數宣告:

typedef enum workday{
    saturday,
    sunday = 0,
    monday,
    tuesday,
    wednesday,
    thursday,
    friday
} workday; //此處的workday為列舉型enum workday的別名

workday today, tomorrow; //變數today和tomorrow的型別為列舉型workday,也即enum workday

enum workday中的workday可以省略:

typedef enum{
    saturday,
    sunday = 0,
    monday,
    tuesday,
    wednesday,
    thursday,
    friday
} workday; //此處的workday為列舉型enum workday的別名
workday today, tomorrow; //變數today和tomorrow的型別為列舉型workday,也即 enum workday

也可以用這種方式:

typedef enum workday{
    saturday,
    sunday = 0,
    monday,
    tuesday,
    wednesday,
    thursday,
    friday
};
workday today, tomorrow; //變數today和tomorrow的型別為列舉型workday,也即 enum workday

注意:同一個程式中不能定義同名的列舉型別,不同的列舉型別中也不能存在同名的命名常量。錯誤示例如下所示:

錯誤宣告一:存在同名的列舉型別

typedef enum{
    wednesday,
    thursday,
    friday
} workday;

typedef enum WEEK{
    saturday,
    sunday = 0,
    monday,
} workday;

錯誤宣告二:存在同名的列舉成員

typedef enum{
    wednesday,
    thursday,
    friday
} workday_1;

typedef enum WEEK{
    wednesday,
    sunday = 0,
    monday,
} workday_2;
  1. 使用列舉型別的變數

3.1 對列舉型的變數賦值。

例項將列舉型別的賦值與基本資料型別的賦值進行了對比:

方法一:先宣告變數,再對變數賦值

#include<stdio.h>
/* 定義列舉型別 */
enum DAY { MON=1, TUE, WED, THU, FRI, SAT, SUN };
void main(){
    /* 使用基本資料型別宣告變數,然後對變數賦值 */
    int x, y, z;

    x = 10;
    y = 20;
    z = 30;

    /* 使用列舉型別宣告變數,再對列舉型變數賦值 */
    enum DAY yesterday, today, tomorrow;

    yesterday = MON;
    today     = TUE;
    tomorrow  = WED;
    printf("%d %d %d /n", yesterday, today, tomorrow);
}

方法二:宣告變數的同時賦初值

#include <stdio.h>
/* 定義列舉型別 */
enum DAY { MON=1, TUE, WED, THU, FRI, SAT, SUN };
void main(){
    /* 使用基本資料型別宣告變數同時對變數賦初值 */
    int x=10, y=20, z=30;
    /* 使用列舉型別宣告變數同時對列舉型變數賦初值 */
    enum DAY yesterday = MON, 
                        today = TUE,
                   tomorrow = WED;
    printf("%d %d %d /n", yesterday, today, tomorrow);
}

方法三:定義型別的同時宣告變數,然後對變數賦值。

#include <stdio.h>
/* 定義列舉型別,同時宣告該型別的三個變數,它們都為全域性變數 */
enum DAY { MON=1, TUE, WED, THU, FRI, SAT, SUN } yesterday, today, tomorrow;
/* 定義三個具有基本資料型別的變數,它們都為全域性變數 */
int x, y, z;
void main(){
    /* 對基本資料型別的變數賦值 */
    x = 10;  y = 20;  z = 30;

    /* 對列舉型的變數賦值 */
    yesterday = MON;
    today     = TUE;
    tomorrow  = WED;
    printf("%d %d %d /n", x, y, z); //輸出:10 20 30
    printf("%d %d %d /n", yesterday, today, tomorrow); //輸出:1 2 3
}

方法四:型別定義,變數宣告,賦初值同時進行。

#include <stdio.h>
/* 定義列舉型別,同時宣告該型別的三個變數,並賦初值。它們都為全域性變數 */
enum DAY{
    MON=1, 
    TUE,
    WED,
    THU,
    FRI,
    SAT,
    SUN 
}
yesterday = MON, today = TUE, tomorrow = WED;
/* 定義三個具有基本資料型別的變數,並賦初值。它們都為全域性變數 */
int x = 10, y = 20, z = 30;
void main(){
    printf("%d %d %d /n", x, y, z); //輸出:10 20 30
    printf("%d %d %d /n", yesterday, today, tomorrow); //輸出:1 2 3
}



3.2 對列舉型的變數賦整數值時,需要進行型別轉換。


#include <stdio.h>
enum DAY { MON=1, TUE, WED, THU, FRI, SAT, SUN };
void main(){
    enum DAY yesterday, today, tomorrow;
    yesterday = TUE;
    today = (enum DAY) (yesterday + 1); //型別轉換
    tomorrow = (enum DAY) 30; //型別轉換
    //tomorrow = 3; //錯誤
    printf("%d %d %d /n", yesterday, today, tomorrow); //輸出:2 3 30
}

3.3 使用列舉型變數

#include<stdio.h>
enum{ 
    BELL          = '/a',
    BACKSPACE = '/b',
    HTAB         = '/t',
    RETURN      = '/r',
    NEWLINE    = '/n', 
    VTAB         = '/v',
    SPACE       = ' '
};
enum BOOLEAN { FALSE = 0, TRUE } match_flag;
void main(){
    int index = 0;
    int count_of_letter = 0;
    int count_of_space = 0;
    char str[] = "I'm Ely efod";
    match_flag = FALSE;
    for(; str[index] != '/0'; index++)
        if( SPACE != str[index] )
            count_of_letter++;
        else {
            match_flag = (enum BOOLEAN) 1;
            count_of_space++;
        }

    printf("%s %d times %c", match_flag ? "match" : "not match", count_of_space, NEWLINE);
    printf("count of letters: %d %c%c", count_of_letter, NEWLINE, RETURN);
}

輸出:

match 2 times
count of letters: 10
Press any key to continue
  1. 列舉型別與sizeof運算子
#include <stdio.h>
enum escapes{ 
    BELL      = '/a',
    BACKSPACE = '/b',
    HTAB      = '/t',
    RETURN    = '/r',
    NEWLINE   = '/n', 
    VTAB      = '/v',
    SPACE     = ' '
};
enum BOOLEAN { FALSE = 0, TRUE } match_flag;
void main(){
    printf("%d bytes /n", sizeof(enum escapes)); //4 bytes
    printf("%d bytes /n", sizeof(escapes)); //4 bytes
    printf("%d bytes /n", sizeof(enum BOOLEAN)); //4 bytes
    printf("%d bytes /n", sizeof(BOOLEAN)); //4 bytes
    printf("%d bytes /n", sizeof(match_flag)); //4 bytes
    printf("%d bytes /n", sizeof(SPACE)); //4 bytes
    printf("%d bytes /n", sizeof(NEWLINE)); //4 bytes
    printf("%d bytes /n", sizeof(FALSE)); //4 bytes
    printf("%d bytes /n", sizeof(0)); //4 bytes
}
  1. 綜合舉例
#include<stdio.h>
enum Season{
    spring, summer=100, fall=96, winter
};
typedef enum{
    Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday
}
Weekday;
void main(){
    /* Season */
    printf("%d /n", spring); // 0
    printf("%d, %c /n", summer, summer); // 100, d
    printf("%d /n", fall+winter); // 193
    Season mySeason=winter;
    if(winter==mySeason)
        printf("mySeason is winter /n"); // mySeason is winter

    int x=100;
    if(x==summer)
        printf("x is equal to summer/n"); // x is equal to summer
    printf("%d bytes/n", sizeof(spring)); // 4 bytes
    /* Weekday */
    printf("sizeof Weekday is: %d /n", sizeof(Weekday)); //sizeof Weekday is: 4
    Weekday today = Saturday;
    Weekday tomorrow;
    if(today == Monday)
        tomorrow = Tuesday;
    else
        tomorrow = (Weekday) (today + 1); //remember to convert from int to Weekday
}