0

我现在花了很多时间试图让它工作,但恐怕我现在唯一的办法就是尝试总结我的代码并向大家寻求帮助。

情况是,如果我取消注释以下代码中的两个实例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,但到目前为止,我只能设法得到不同的错误

4

1 回答 1

2

它与不可变引用一起工作的原因是因为它们可以被隐式复制。当您切换到尝试返回 a&mut时,会有两个地方具有该引用 - Vec 和函数的调用者。这将引入别名,并且 Rust 中不允许使用可变别名。

您甚至可以忽略Index实现并尝试以下操作:

fn main() {
    let mut f = Foo::new(1,2,3);
    f.add_t_ref(1);
    f.add_t_ref(2);
}

你会得到:

error: cannot borrow `f` as mutable more than once at a time

尽管以上所有内容都是正确的,但它并不能真正解释为什么您会收到特定的错误消息。

于 2015-02-16T23:50:24.453 回答