mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-04-05 01:55:31 +02:00
'Stack Memory' slide isn't really showing stack memory (#996)
This commit is contained in:
parent
cb689be312
commit
aabe0c0a96
@ -1,7 +1,7 @@
|
|||||||
# Stack Memory
|
# Stack and Heap Example
|
||||||
|
|
||||||
Creating a `String` puts fixed-sized data on the stack and dynamically sized
|
Creating a `String` puts fixed-sized metadata on the stack and dynamically sized
|
||||||
data on the heap:
|
data, the actual string, on the heap:
|
||||||
|
|
||||||
```rust,editable
|
```rust,editable
|
||||||
fn main() {
|
fn main() {
|
||||||
@ -40,7 +40,7 @@ fn main() {
|
|||||||
// String provides no guarantees about its layout, so this could lead to
|
// String provides no guarantees about its layout, so this could lead to
|
||||||
// undefined behavior.
|
// undefined behavior.
|
||||||
unsafe {
|
unsafe {
|
||||||
let (capacity, ptr, len): (usize, usize, usize) = std::mem::transmute(s1);
|
let (ptr, capacity, len): (usize, usize, usize) = std::mem::transmute(s1);
|
||||||
println!("ptr = {ptr:#x}, len = {len}, capacity = {capacity}");
|
println!("ptr = {ptr:#x}, len = {len}, capacity = {capacity}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user