Update Ch15

This commit is contained in:
Unisko PENG
2023-05-09 11:26:09 +08:00
parent 4d2e5df777
commit db7765cab0
2 changed files with 29 additions and 4 deletions

View File

@@ -1,3 +1,25 @@
fn main() {
println!("Hello, world!");
use std::ops::Deref;
struct MyBox<T>(T);
impl<T> MyBox<T> {
fn new(x: T) -> MyBox<T> {
MyBox(x)
}
}
impl<T> Deref for MyBox<T> {
type Target = T;
fn deref(&self) -> &Self::Target {
&self.0
}
}
fn main() {
let boxed_string = MyBox::new(String::from("装箱的字符串"));
let x = 5;
let y = &x;
println! ("{}, {}", *boxed_string, *y);
}