mirror of https://github.com/sunface/rust-course
				
				
				
			
			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.
		
		
		
		
		
			
		
			
				
					29 lines
				
				565 B
			
		
		
			
		
	
	
					29 lines
				
				565 B
			| 
								 
											4 years ago
										 
									 | 
							
								// move_semantics2.rs
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								// 在不更改第 13 行的要求下通过编译!
							 | 
						||
| 
								 | 
							
								// 执行 `rustex hint move_semantics2` 获取提示 :)
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
								// I AM NOT DONE
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								fn main() {
							 | 
						||
| 
								 | 
							
								    let vec0 = Vec::new();
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    let mut vec1 = fill_vec(vec0);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								    // 不要更改下面那行!
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								    println!("{} has length {} content `{:?}`", "vec0", vec0.len(), vec0);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    vec1.push(88);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    println!("{} has length {} content `{:?}`", "vec1", vec1.len(), vec1);
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								fn fill_vec(vec: Vec<i32>) -> Vec<i32> {
							 | 
						||
| 
								 | 
							
								    let mut vec = vec;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    vec.push(22);
							 | 
						||
| 
								 | 
							
								    vec.push(44);
							 | 
						||
| 
								 | 
							
								    vec.push(66);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    vec
							 | 
						||
| 
								 | 
							
								}
							 |