You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.6 KiB

## box_it
### Instructions
3 years ago
Create the following **functions**:
3 years ago
- `transform_and_save_on_heap`, which receives a string with a number (that can or not have a k (kilo) suffix)
and transforms those numbers into `u32` and inserts them into a vector which must be saved in the heap using **Box**.
3 years ago
- `take_value_ownership`, which takes the value (unboxed value) from the box and returns it
3 years ago
### Notions
- [smart pointers](https://doc.rust-lang.org/book/ch15-00-smart-pointers.html)
- [using box](https://doc.rust-lang.org/book/ch15-01-box.html)
### Expected Functions
```rust
3 years ago
pub fn transform_and_save_on_heap(s: String) -> Box<Vec<u32>> {
}
pub fn take_value_ownership(a: Box<Vec<u32>>) -> Vec<u32> {
}
```
### Usage
3 years ago
Here is a program to test your functions
```rust
3 years ago
use box_it::*;
fn main() {
let new_str = String::from("5.5k 8.9k 32");
// creating a variable and we save it in the Heap
let a_h = transform_and_save_on_heap(new_str);
println!("Box value : {:?}", &a_h);
println!("size occupied in the stack : {:?} bytes", (std::mem::size_of_val(&a_h)));
3 years ago
let a_b_v = take_value_ownership(a_h);
println!("value : {:?}", &a_b_v);
println!("size occupied in the stack : {:?} bytes", (std::mem::size_of_val(&a_b_v)));
// whenever the box, in this case "a_h", goes out of scope it will be deallocated, freed
}
```
And its output:
```console
student@ubuntu:~/[[ROOT]]/test$ cargo run
3 years ago
Box value : [5500, 8900, 32]
size occupied in the stack : 8 bytes
3 years ago
value : [5500, 8900, 32]
size occupied in the stack : 24 bytes
student@ubuntu:~/[[ROOT]]/test$
```