
Rust Basics
Variables, mutability, primitive types, functions, expressions, control flow, pattern matching
1By default, how are variables declared in Rust?
By default, how are variables declared in Rust?
回答
In Rust, all variables are immutable by default when declared with let. This design promotes safety and concurrency by preventing accidental modifications. To make a variable mutable, explicitly use the mut keyword after let.
2What is the difference between let and const in Rust?
What is the difference between let and const in Rust?
回答
const declares a compile-time constant with mandatory type annotation, while let declares a runtime variable with possible type inference. Constants must have values known at compile time and can be used in compilation contexts like array sizes.
3What is shadowing in Rust?
What is shadowing in Rust?
回答
Shadowing allows redeclaring a variable with the same name using let, creating a new variable that hides the previous one. Unlike mut, shadowing allows changing the variable type. This is useful for transforming a value while keeping the same logical name.
What is the default signed integer type in Rust?
What is the difference between isize and i64 in Rust?
+22 面接問題