我现在花了很多时间试图让它工作,但恐怕我现在唯一的办法就是尝试总结我的代码并向大家寻求帮助。
情况是,如果我取消注释以下代码中的两个实例mut
,它将不再编译(并且不是出于对我有意义的原因):
use std::cell::RefCell;
use std::ops::Index;
struct Foo<'a, T: 'a> {
t_array: [T; 3],
t_refs: RefCell<Vec<&'a /* mut */ T>>, //' // 1
}
impl<'a, T> Foo<'a, T> {
fn new(t1: T, t2: T, t3: T) -> Foo<'a, T> { //'
Foo {
t_array: [t1, t2, t3],
t_refs: RefCell::new(Vec::with_capacity(3))
}
}
fn add_t_ref(&'a mut self, at_index: usize) { //'
let t_ref = & /* mut */ self.t_array[at_index]; // 2
let mut t_refs = self.t_refs.borrow_mut();
t_refs.push(t_ref);
}
}
impl<'a, T> Index<usize> for Foo<'a, T> {
type Output = T;
#[inline]
fn index(&self, index: &usize) -> &T {
let t_refs = self.t_refs.borrow();
t_refs[*index]
}
}
mut
将引用存储在中时发生的错误Vec
是:
blah3_mut.rs:26:9: 26:15 error: `t_refs` does not live long enough
blah3_mut.rs:26 t_refs[*index]
^~~~~~
blah3_mut.rs:24:42: 27:6 note: reference must be valid for the anonymous lifetime #1 defined on the block at 24:41...
blah3_mut.rs:25:42: 27:6 note: ...but borrowed value is only valid for the block suffix following statement 0 at 25:41
如果有人能解释为什么会这样,我会很高兴;RefCell
从直觉上看,的借用超出范围似乎不应该是一个问题。(Vec
因此RefCell
也是)不拥有引用所指向的数据,那么为什么编译器会关心其引用的生命周期呢?
PS 我知道我的简化代码摘录并没有说明为什么我在 a 中存储可变引用Vec
或者为什么我使用 a RefCell
——尽管可以说这不是偶然的
PPS我尝试在方法和/或特征的关联类型上使用生命周期注释来搞乱一点index
,但到目前为止,我只能设法得到不同的错误