3.2.2 C-like

enum은 C의 enum과 유사하게 사용될 수 있다.

// An attribute to hide warnings for unused code.
#![allow(dead_code)]

// 암시적으로 식별되는 enum (0에서 시작)
enum Number {
    Zero,
    One,
    Two,
}

// 명시적으로 식별 가능한 enum 
enum Color {
    Red = 0xff0000,
    Green = 0x00ff00,
    Blue = 0x0000ff,
}

fn main() {
    // `enums` 은 정수형으로 변환 사용 가능.
    println!("zero is {}", Number::Zero as i32);
    println!("one is {}", Number::One as i32);

    println!("roses are #{:06x}", Color::Red as i32);
    println!("violets are #{:06x}", Color::Blue as i32);
}

See also:

casting

results matching ""

    No results matching ""