gpt4 book ai didi

rust - 限制 Rust 中的对象生命周期

转载 作者:行者123 更新时间:2023-11-29 07:58:09 24 4
gpt4 key购买 nike

我正在包装一个 C 库,它有一种标准的上下文对象:

library_context* context = library_create_context();

然后使用它您可以创建更多对象:

library_object* object = library_create_object(context);

然后把他们都摧毁:

library_destroy_object(object);
library_destroy_context(context);

所以我将其封装在 Rust 结构中:

struct Context {
raw_context: *mut library_context,
}

impl Context {
fn new() -> Context {
Context {
raw_context: unsafe { library_create_context() },
}
}

fn create_object(&mut self) -> Object {
Object {
raw_object: unsafe { library_create_object(self.raw_context) },
}
}
}

impl Drop for Context {
fn drop(&mut self) {
unsafe {
library_context_destroy(self.raw_context);
}
}
}

struct Object {
raw_object: *mut library_object,
}

impl Drop for Object {
fn drop(&mut self) {
unsafe {
library_object_destroy(self.raw_object);
}
}
}

所以现在我可以做到这一点,而且似乎可行:

fn main() {
let mut ctx = Context::new();
let ob = ctx.create_object();
}

不过,我也可以这样做:

fn main() {
let mut ctx = Context::new();
let ob = ctx.create_object();
drop(ctx);

do_something_with(ob);
}

即库上下文在它创建的对象被销毁之前被销毁。

我能否以某种方式使用 Rust 的生命周期系统来阻止上述代码的编译?

最佳答案

是的,只需使用正常的生命周期:

#[derive(Debug)]
struct Context(u8);

impl Context {
fn new() -> Context {
Context(0)
}

fn create_object(&mut self) -> Object {
Object {
context: self,
raw_object: 1,
}
}
}

#[derive(Debug)]
struct Object<'a> {
context: &'a Context,
raw_object: u8,
}

fn main() {
let mut ctx = Context::new();
let ob = ctx.create_object();
drop(ctx);

println!("{:?}", ob);
}

这将失败

error[E0505]: cannot move out of `ctx` because it is borrowed
--> src/main.rs:26:10
|
25 | let ob = ctx.create_object();
| --- borrow of `ctx` occurs here
26 | drop(ctx);
| ^^^ move out of `ctx` occurs here

有时人们喜欢使用 PhantomData ,但我不确定我是否看到了这里的好处:

fn create_object(&mut self) -> Object {
Object {
marker: PhantomData,
raw_object: 1,
}
}

#[derive(Debug)]
struct Object<'a> {
marker: PhantomData<&'a ()>,
raw_object: u8,
}

关于rust - 限制 Rust 中的对象生命周期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41130447/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com