Rust - 枚举


在 Rust 编程中,当我们必须从可能的变体列表中选择一个值时,我们使用枚举数据类型。枚举类型是使用enum关键字声明的。以下是枚举的语法 -

enum enum_name {
   variant1,
   variant2,
   variant3
}

插图:使用枚举

该示例声明了一个枚举 - GenderCategory,它具有 Male 和 Female 变体。打印宏显示枚举的值。编译器将抛出错误,指出 std::fmt::Debug 未针对 GenderCategory 实现。属性#[derive(Debug)]用于抑制此错误。

// The `derive` attribute automatically creates the implementation
// required to make this `enum` printable with `fmt::Debug`.
#[derive(Debug)]
enum GenderCategory {
   Male,Female
}
fn main() {
   let male = GenderCategory::Male;
   let female = GenderCategory::Female;

   println!("{:?}",male);
   println!("{:?}",female);
}

输出

Male
Female

结构体和枚举

下面的示例定义了一个结构体 Person。字段性别的类型为GenderCategory(这是一个枚举),可以指定为MaleFemale作为值。

// The `derive` attribute automatically creates the 
implementation
// required to make this `enum` printable with 
`fmt::Debug`.

#[derive(Debug)]
enum GenderCategory {
   Male,Female
}

// The `derive` attribute automatically creates the implementation
// required to make this `struct` printable with `fmt::Debug`.
#[derive(Debug)]
struct Person {
   name:String,
   gender:GenderCategory
}

fn main() {
   let p1 = Person {
      name:String::from("Mohtashim"),
      gender:GenderCategory::Male
   };
   let p2 = Person {
      name:String::from("Amy"),
      gender:GenderCategory::Female
   };
   println!("{:?}",p1);
   println!("{:?}",p2);
}

该示例创建 Person 类型的对象p1p2,并初始化每个对象的属性、名称和性别。

输出

Person { name: "Mohtashim", gender: Male }
Person { name: "Amy", gender: Female }

选项枚举

Option 是 Rust 标准库中预定义的枚举。该枚举有两个值 - Some(data)和 None。

句法

enum Option<T> {
   Some(T),      //used to return a value
   None          // used to return null, as Rust doesn't support 
   the null keyword
}

这里,类型T代表任意类型的值。

Rust 不支持null关键字。函数可以使用enumOption中的值None来返回空值。如果有数据要返回,该函数可以返回Some(data)

让我们通过一个例子来理解这一点 -

该程序定义了一个函数is_even(),其返回类型为 Option。该函数验证传递的值是否为偶数。如果输入是偶数,则返回值 true ,否则函数返回None

fn main() {
   let result = is_even(3);
   println!("{:?}",result);
   println!("{:?}",is_even(30));
}
fn is_even(no:i32)->Option<bool> {
   if no%2 == 0 {
      Some(true)
   } else {
      None
   }
}

输出

None
Some(true)

匹配语句和枚举

match语句可用于比较存储在枚举中的值。以下示例定义了一个函数print_size,该函数采用CarType枚举作为参数。该函数将参数值与一组预定义的常量进行比较,并显示相应的消息。

enum CarType {
   Hatch,
   Sedan,
   SUV
}
fn print_size(car:CarType) {
   match car {
      CarType::Hatch => {
         println!("Small sized car");
      },
      CarType::Sedan => {
         println!("medium sized car");
      },
      CarType::SUV =>{
         println!("Large sized Sports Utility car");
      }
   }
}
fn main(){
   print_size(CarType::SUV);
   print_size(CarType::Hatch);
   print_size(CarType::Sedan);
}

输出

Large sized Sports Utility car
Small sized car
medium sized car

与选项匹配

is_even函数的示例,返回 Option 类型,也可以使用 match 语句来实现,如下所示 -

fn main() {
   match is_even(5) {
      Some(data) => {
         if data==true {
            println!("Even no");
         }
      },
      None => {
         println!("not even");
      }
   }
}
fn is_even(no:i32)->Option<bool> {
   if no%2 == 0 {
      Some(true)
   } else {
      None
   }
}

输出

not even

与数据类型的匹配和枚举

可以向枚举的每个变体添加数据类型。在以下示例中,枚举的 Name 和 Usr_ID 变体分别是字符串和整数类型。以下示例显示了将 match 语句与具有数据类型的枚举一起使用。

// The `derive` attribute automatically creates the implementation
// required to make this `enum` printable with `fmt::Debug`.
#[derive(Debug)]
enum GenderCategory {
   Name(String),Usr_ID(i32)
}
fn main() {
   let p1 = GenderCategory::Name(String::from("Mohtashim"));
   let p2 = GenderCategory::Usr_ID(100);
   println!("{:?}",p1);
   println!("{:?}",p2);

   match p1 {
      GenderCategory::Name(val)=> {
         println!("{}",val);
      }
      GenderCategory::Usr_ID(val)=> {
         println!("{}",val);
      }
   }
}

输出

Name("Mohtashim")
Usr_ID(100)
Mohtashim