gpt4 book ai didi

reference - 借用的值在循环中的生命周期不够长

转载 作者:行者123 更新时间:2023-11-29 08:30:35 27 4
gpt4 key购买 nike

我正在尝试解析文件并返回 Vec<Vec<&str>>从一个函数。但是在推送到向量时,我在文件读取循环中遇到了借用值错误。

use std::io::{self, BufReader, prelude::*};
use std::fs::File;

fn read() -> Vec<Vec<&'static str>> {
let file = File::open("~/test").expect("failed to read file");
let reader = BufReader::new(file);
let mut main_vector: Vec<Vec<&str>> = Vec::new();
for line in reader.lines() {
match line {
Ok(v) => {
let mut sub_vector: Vec<&str> = Vec::new();
for element in v.split_whitespace().collect::<Vec<&str>>() {
sub_vector.push(element);
}
main_vector.push(sub_vector);
},
Err(e) => panic!("failed to parse: {:?}", e),
}
}
//return main_vector;
}

这是编译器错误:

error[E0597]: `v` does not live long enough
--> src/main.rs:67:32
|
67 | for element in v.split_whitespace().collect::<Vec<&str>>() {
| ^ borrowed value does not live long enough
...
70 | main_vector.push(sub_vector);
| -------------- borrow later used here
71 | },
| - `v` dropped here while still borrowed

我认为这是关于引用和借用的,但我仍然很难弄清楚这一点。

最佳答案

这个问题类似于Return local String as a slice (&str) .最简单的解决方案与该问题相同 - 使用 String,而不是 &str。这些问题是不同的,因为该答案专门讨论从函数返回,而您没有列出函数。

要解决生命周期导致代码失败的原因,请尝试一个更简单的示例

fn main() {
let mut v:Vec<&str> = Vec::new();
{
let chars = [b'x', b'y', b'z'];
let s:&str = std::str::from_utf8(&chars).unwrap();
v.push(&s);
}
println!("{:?}", v);
}

和编译器输出


let s:&str = std::str::from_utf8(&chars).unwrap();
^^^^^^ borrowed value does not live long enough

这不起作用的原因正是编译器所说的。 chars在 block 内创建,因此它获得与该 block 关联的生命周期,并且当您的程序退出该 block 时,字符可能不再存在。任何提到 chars 的东西可能有悬空指针。 Rust 通过将其设为非法来避免悬挂指针。在我的示例中,Rust 不允许这样做似乎很愚蠢,但在您的示例中这是有道理的 - Rust 可以通过删除旧的 str 来保持堆栈较小。来自 v.split_whitespace().collect::<Vec<&str>>()每次循环。

关于reference - 借用的值在循环中的生命周期不够长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59022234/

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