summaryrefslogtreecommitdiff
path: root/meap/meap-code/ch6/ch6-heap-vs-stack/src
diff options
context:
space:
mode:
authorAdam Carpenter <53hornet@gmail.com>2019-03-27 15:32:37 -0400
committerAdam Carpenter <53hornet@gmail.com>2019-03-27 15:32:37 -0400
commit67cdcc2e12118becb823e20a40cc2687f2b8425a (patch)
treeed92c3234b89079e6d4cf36f5e80c5ffa79def48 /meap/meap-code/ch6/ch6-heap-vs-stack/src
parente25482fca375d318a39c3b54db396b0db6e0b263 (diff)
downloadlearning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.tar.xz
learning-rust-67cdcc2e12118becb823e20a40cc2687f2b8425a.zip
Started Rust in Action MEAP.
Diffstat (limited to 'meap/meap-code/ch6/ch6-heap-vs-stack/src')
-rw-r--r--meap/meap-code/ch6/ch6-heap-vs-stack/src/main.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/meap/meap-code/ch6/ch6-heap-vs-stack/src/main.rs b/meap/meap-code/ch6/ch6-heap-vs-stack/src/main.rs
new file mode 100644
index 0000000..3bf14c6
--- /dev/null
+++ b/meap/meap-code/ch6/ch6-heap-vs-stack/src/main.rs
@@ -0,0 +1,16 @@
+use std::mem::drop; // <1> Bring manual `drop()` into local scope
+
+fn main() {
+ let a = Box::new(1);
+ let b = Box::new(1);
+ let c = Box::new(1);
+
+ let result1 = *a + *b + *c; // <2> Use the variables so that they're not optimized away by the compiler. The unary `pass:[*]` operator is called the dereference operator. It returns the value within the box.
+
+ drop(a); // <3> The memory holding `a` is now available
+
+ let d = Box::new(1);
+ let result2 = *b + *c + *d;
+
+ println!("{} {}", result1, result2);
+}