Puzzle 11: Explanation
Let’s find out how stacks and heaps work in Rust.
Test it out
Hit “Run” to see the code’s output. The answer depends on how we run the program.
Debug mode
Pressing “Run” will cause the program to crash and display an error message:
Press + to interact
fn main() {let c = Box::new([0u32; 10_000_000]);println!("{}", c.len());}
Release mode
Pressing “Run” in release mode will display the following output:
10000000
[package] name = "boxes" version = "0.1.0" authors = ["Herbert Wolverson <herberticus@gmail.com>"] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]
Running in release mode
Explanation
-bit integers require MB of memory to store. That’s ...