gpt4 book ai didi

rust - 借用的值(value)活得不够长,需要静态生命周期

转载 作者:行者123 更新时间:2023-12-05 01:57:48 28 4
gpt4 key购买 nike

我在这个 rust playground 的示例代码中遇到了这个错误

   Compiling playground v0.0.1 (/playground)
error[E0597]: `text` does not live long enough
--> src/main.rs:34:38
|
34 | let item = NotLongEnough { text: &text };
| ^^^^^ borrowed value does not live long enough
35 | let mut wrapper = Container { buf: Vec::new() };
36 | wrapper.add(Box::new(item));
| -------------- cast requires that `text` is borrowed for `'static`
...
40 | }
| - `text` dropped here while still borrowed

error: aborting due to previous error

For more information about this error, try `rustc --explain E0597`.
error: could not compile `playground`

To learn more, run the command again with --verbose.

内容是:

trait TestTrait {
fn get_text(&self) -> &str;
}

#[derive(Copy, Clone)]
struct NotLongEnough<'a> {
text: &'a str,
}

impl<'a> TestTrait for NotLongEnough<'a> {
fn get_text(&self) -> &str {
self.text
}
}

struct Container {
buf: Vec<Box<dyn TestTrait>>,
}

impl Container {
pub fn add(&mut self, item: Box<dyn TestTrait>) {
self.buf.push(item);
}

pub fn output(&self) {
for item in &self.buf {
println!("{}", item.get_text());
}
}
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
let text = "test".to_owned();
let item = NotLongEnough { text: &text };
let mut wrapper = Container { buf: Vec::new() };
wrapper.add(Box::new(item));
wrapper.output();

Ok(())
}

我不知道为什么 cast 要求为 'static 借用文本有人可以帮我解决这个问题吗?我不知道我做错了什么。

最佳答案

TLDR: Fixed version

问题出在您的 Container 定义中:

struct Container {
buf: Vec<Box<dyn TestTrait>>,
}

声明 dyn TestTrait 等同于 dyn TestTrait + 'static,这意味着您的特征对象不得包含任何生命周期小于 'static< 的引用.

为了解决这个问题,你必须用一个不太严格的特性来替换那个特性绑定(bind):

struct Container<'a> {
buf: Vec<Box<dyn TestTrait + 'a>>,
}

现在容器需要 'a 而不是 'static。而且您还必须将该更改应用到实现中:

   pub fn add(&mut self, item: Box<dyn TestTrait + 'a>) { // notice the new trait-bound
self.buf.push(item);
}

相关资源:

关于rust - 借用的值(value)活得不够长,需要静态生命周期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68870851/

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