摘要:
Rust 代码中的函数和变量名使用 snake case 规范风格。在 snake case 中,所有字母都是小写并使用下划线分隔单词。这是一个包含函数定义示例的程序: fn main() { println!("Hello, world!"); another_function(); } fn a 阅读全文
摘要:
Rust 是 静态类型 (statically typed) 语言,也就是说在编译时就必须知道所有变量的类型 使用 parse 将 String 转换为数字时,必须增加类型注解,像这样: let guess: u32 = "42".parse().expect("Not a number!"); 如 阅读全文
摘要:
变量 fn main() { let mut x = 5; println!("The value of x is: {x}"); x = 6; println!("The value of x is: {x}"); } 使用 let 可以申明一个不可变的变量,变量默认是不可改变的(immutabl 阅读全文