我试图在创建结构体时记录结构体地址,当它被删除时,当我运行下面的代码时,不仅两个结构体记录相同的地址,两个结构体在被删除时记录不同的地址。有正确的方法吗?
struct TestStruct {
val: i32
}
impl TestStruct {
fn new(val: i32) -> Self {
let x = TestStruct{val};
println!("creating struct {:p}", &x as *const _);
x
}
}
impl Drop for TestStruct {
fn drop(&mut self) {
println!("destroying struct {:p}", &self as *const _)
}
}
fn main() {
let s1 = TestStruct::new(1);
let s2 = TestStruct::new(2);
}
输出:
creating struct 0x7ffef1f96e44
creating struct 0x7ffef1f96e44
destroying struct 0x7ffef1f96e38
destroying struct 0x7ffef1f96e38
在new()
中,您打印的是x
的地址,当new()
返回时,x
被移动,因此这不再是实际地址,这就是为什么您看到相同的地址重复。
请参见"返回值是否移动?"。
在drop()
中,您实际上打印的是&Self
的地址,而不是Self
本身。您需要将&self as *const _
更改为self
,因为self
已经是一个引用。现在它正确地打印了两个不同的地址。
如果您尝试在main()
中打印s1
和s2
的地址,则地址匹配。
impl TestStruct {
fn new(val: i32) -> Self {
let x = TestStruct { val };
x
}
}
impl Drop for TestStruct {
fn drop(&mut self) {
println!("destroying struct {:p}", self);
}
}
fn main() {
let s1 = TestStruct::new(1);
println!("creating struct {:p}", &s1);
let s2 = TestStruct::new(2);
println!("creating struct {:p}", &s2);
}
输出:
creating struct 0xb8682ff59c <- s1
creating struct 0xb8682ff5f4 <- s2
destroying struct 0xb8682ff5f4 <- s2
destroying struct 0xb8682ff59c <- s1