当前位置: 代码迷 >> 综合 >> Rust:如何 match 匹配 String 字符串?
  详细解决方案

Rust:如何 match 匹配 String 字符串?

热度:8   发布时间:2023-12-12 15:22:07.0

废话少说,直接贴代码看例子吧!

fn main() {
    let s = String::from("hello");match &s as &str {
    "hello" => println!("hello"),_ => (),}
}
  相关解决方案