rust 元组
表现形式
和python的元组类似,rust中的元组是一个有序列表,可以包含多种不同类型的数据。
rust
let tup = (500, 6.4, 'a');
模式匹配解构元组
和python中的解构一样,rust也支持模式匹配解构元组,但是需要注意的是,如果元组中有多个相同类型的变量,那么必须使用_
来跳过。
rust
let tup = (500, 6.4, 'a');
let (x, y, _) = tup;
println!("The value of x is: {}", x);
println!("The value of y is: {}", y);
访问元组
这个就和C++的tuple类似,通过点号来访问。
rust
let tup = (500, 6.4, 'a');
println!("The value of the tuple is: {}", tup);
println!("The value of the first element in the tuple is: {}", tup.0);
println!("The value of the second element in the tuple is: {}", tup.1);