摘要: Rust中的模式匹配 模式匹配大概有以下几种: let语句 if let语句 match表达式 函数签名 for循环 while let语句 // 1 let语句 let x = 1; let option_x = Some(x); // 2 if let if let Some(num) = op 阅读全文
posted @ 2022-02-07 16:05 yihailin 阅读(389) 评论(0) 推荐(0) 编辑