gpt4 book ai didi

rust - 可选择将项目推送到 Vec 或返回现有项目

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

<分区>

我有一个函数可以从 Vec 返回对现有项目的引用,或者将新项目推送到 Vec 并返回对该现有项目的引用。我创建了一个基本示例来说明我想做什么:

struct F {
x: Vec<Vec<String>>,
}

impl F {
fn foo(&mut self, s: String) -> &[String] {
for strings in &self.x {
if strings.contains(&s) {
return &strings;
}
}

self.x.push(vec![s]);

&self.x[self.x.len() - 1]
}
}

但是当我尝试编译它时,我收到关于生命周期的错误:

error[E0502]: cannot borrow `self.x` as mutable because it is also borrowed as immutable
--> src/lib.rs:13:9
|
6 | fn foo(&mut self, s: String) -> &[String] {
| - let's call the lifetime of this reference `'1`
7 | for strings in &self.x {
| ------- immutable borrow occurs here
8 | if strings.contains(&s) {
9 | return &strings;
| -------- returning this value requires that `self.x` is borrowed for `'1`
...
13 | self.x.push(vec![s]);
| ^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here

我不明白这个错误,因为在我看来第 7 行的不可变借用在第 13 行保证不再存在,因为函数要么在第 13 行之前返回,要么 for 循环结束,借用应该以它结束。我错过了什么?

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