This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
devlogs:8_5_2022 [2022/05/08 15:04] root created |
devlogs:8_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Sunday , May 8th 2022 ====== | ====== Sunday , May 8th 2022 ====== | ||
+ | |||
+ | Solving the rustlings/ | ||
+ | |||
+ | this is the file | ||
+ | <code rust> | ||
+ | // move_semantics2.rs | ||
+ | // Make me compile without changing line 13 or moving line 10! | ||
+ | // Execute `rustlings hint move_semantics2` for hints :) | ||
+ | |||
+ | // I AM NOT DONE | ||
+ | |||
+ | fn main() { | ||
+ | //jiji | ||
+ | let vec0 = Vec::new(); | ||
+ | |||
+ | let mut vec1 = fill_vec(vec0); | ||
+ | |||
+ | // Do not change the following line! | ||
+ | println!(" | ||
+ | |||
+ | vec1.push(88); | ||
+ | |||
+ | println!(" | ||
+ | } | ||
+ | |||
+ | fn fill_vec(vec: | ||
+ | let mut vec = vec; | ||
+ | |||
+ | vec.push(22); | ||
+ | vec.push(44); | ||
+ | vec.push(66); | ||
+ | |||
+ | vec | ||
+ | } | ||
+ | </ | ||
+ | this is what the hints have to say | ||
+ | |||
+ | **__hints__** | ||
+ | \\ | ||
+ | < | ||
+ | |||
+ | 2. Make `fill_vec` borrow its argument instead of taking ownership of it, and then copy the data within the function in order to return an owned `Vec< | ||
+ | |||
+ | 3. Make `fill_vec` *mutably* borrow its argument (which will need to be mutable), modify it directly, then not return anything. Then you can get rid of `vec1` entirely -- note that this will change what gets printed by the first `println!` | ||
+ | |||
+ | |||
+ | #1 is easy, just make another vector and pass it in the fill_vec function. Something like | ||
+ | <code rust> | ||
+ | ... | ||
+ | let vec0 = Vec::new(); | ||
+ | let vec01 = Vec::new(); //make and use this vec instead | ||
+ | let mut vec1 = fill_vec(vec01); | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | For #2 and #3 I must getinto | ||
+ | |||
+ | ==== Borrowing ==== | ||
+ | |||
+ | Borrowing is the act of creating a reference. | ||
+ | \\ | ||
+ | [[https:// | ||
+ | |||
+ | <code rust> | ||
+ | let a = String:: | ||
+ | let b = &a; // a is borrowed | ||
+ | //OR | ||
+ | let b = a; //a is moved | ||
+ | </ | ||
+ | |||
+ | Spent most of the day hanging out with some real life people..... it was fun. | ||
+ | |||
+ | But to come back to the whole thing of solving the rustlings movesemantics2 | ||
+ | |||
+ | - Make `fill_vec` borrow its argument instead of taking ownership of it, and then copy the data within the function in order to return an owned Vec< | ||
+ | - Make `fill_vec` *mutably* borrow its argument (which will need to be mutable), modify it directly, then not return anything. Then you can get rid of `vec1` entirely | ||
+ | |||
+ | == For number #2 == | ||
+ | |||
+ | We just pass the refrences of the vector (// | ||
+ | |||
+ | <code rust> | ||
+ | fn main() { | ||
+ | let vec0 = Vec::new(); | ||
+ | |||
+ | let mut vec1 = fill_vec(& | ||
+ | |||
+ | // Do not change the following line! | ||
+ | println!(" | ||
+ | |||
+ | vec1.push(88); | ||
+ | |||
+ | println!(" | ||
+ | } | ||
+ | |||
+ | fn fill_vec(vec: | ||
+ | let mut vec = vec.clone(); | ||
+ | |||
+ | vec.push(22); | ||
+ | vec.push(44); | ||
+ | vec.push(66); | ||
+ | |||
+ | vec | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | == #3 == | ||
+ | |||
+ | For number 3 we can get rid of vec1. We will just take vec0 have it be mutable and then change it within the function. This requires us to make vec0 mutable and pass it by reference so that the ownership does not get moved. | ||
+ | |||
+ | <code rust> | ||
+ | fn main() { | ||
+ | let mut vec0 = Vec::new(); //Make mutable | ||
+ | fill_vec(& | ||
+ | |||
+ | // Do not change the following line! | ||
+ | println!(" | ||
+ | |||
+ | // | ||
+ | |||
+ | // | ||
+ | } | ||
+ | |||
+ | fn fill_vec(vec:& | ||
+ | //let vec = vec; dont need this anymore | ||
+ | vec.push(22); | ||
+ | vec.push(44); | ||
+ | vec.push(66); | ||
+ | |||
+ | } | ||
+ | </ | ||
+ | |||
+ | == Wow tuples! == | ||
+ | Tuples are kinda like arrays but they can hold different types of data. | ||
+ | |||
+ | <code rust> | ||
+ | let i = (2.0," | ||
+ | </ | ||
+ | |||
+ | but like whadoo?? how do you use it? | ||
+ | |||
+ | <code rust> | ||
+ | fn main() { | ||
+ | let i = (2," | ||
+ | let (num, | ||
+ | let anotherNum = i.0; //Lol yeah you can access it like that too | ||
+ | let anotherString = String:: | ||
+ | match i { | ||
+ | | ||
+ | //IF first is 0 and then Destructure the second and third elements | ||
+ | (0, y, z) => println!(" | ||
+ | (1, ..) => println!(" | ||
+ | // | ||
+ | | ||
+ | // `_` means don't bind the value to a variable | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | that is all. | ||
+ | |||
+ | ~~DISCUSSION | Gosy ~~ | ||
+ | |||
+ | |||
+ | |||