154

我不明白错误cannot move out of borrowed content。我收到了很多次,我总是解决它,但我一直不明白为什么。

例如:

for line in self.xslg_file.iter() {
    self.buffer.clear();

    for current_char in line.into_bytes().iter() {
        self.buffer.push(*current_char as char);
    }

    println!("{}", line);
}

产生错误:

error[E0507]: cannot move out of borrowed content
  --> src/main.rs:31:33
   |
31 |             for current_char in line.into_bytes().iter() {
   |                                 ^^^^ cannot move out of borrowed content

在较新版本的 Rust 中,错误是

error[E0507]: cannot move out of `*line` which is behind a shared reference
  --> src/main.rs:31:33
   |
31 |             for current_char in line.into_bytes().iter() {
   |                                 ^^^^ move occurs because `*line` has type `std::string::String`, which does not implement the `Copy` trait

我通过克隆解决了它line

for current_char in line.clone().into_bytes().iter() {

即使在阅读了其他帖子后,我也不明白这个错误:

这种错误的根源是什么?

4

1 回答 1

135

让我们看一下签名into_bytes

fn into_bytes(self) -> Vec<u8>

这需要self,而不是对 self ( &self) 的引用。这意味着self它将被消耗并且在通话后将不可用。取而代之的是一个Vec<u8>. 前缀into_是表示此类方法的常用方式。

我不确切知道您的iter()方法返回什么,但我的猜测是它是一个迭代器 over &String,也就是说,它返回对 a 的引用,String但不给您它们的所有权。这意味着您不能调用使用 value 的方法

如您所见,一种解决方案是使用clone. 这会创建一个您拥有的重复对象,并且可以调用into_bytes。正如其他评论者所提到的,您也可以使用as_byteswhich take &self,因此它将适用于借来的值。您应该使用哪一个取决于您对指针所做的最终目标。

从更大的角度来看,这一切都与所有权的概念有关。某些操作依赖于拥有该项目,而其他操作可以通过借用对象(可能是可变的)而逃脱。引用 ( &foo) 不授予所有权,它只是借用。

self为什么使用而不是&self在函数的参数中使用会很有趣?

一般来说,转让所有权是一个有用的概念——当我完成某件事时,其他人可能会拥有它。在 Rust 中,这是一种提高效率的方法。我可以避免分配一份,给你一份,然后扔掉我的一份。所有权也是最宽容的状态;如果我拥有一个对象,我可以随心所欲地使用它。


这是我创建用于测试的代码:

struct IteratorOfStringReference<'a>(&'a String);

impl<'a> Iterator for IteratorOfStringReference<'a> {
    type Item = &'a String;

    fn next(&mut self) -> Option<Self::Item> {
        None
    }
}

struct FileLikeThing {
    string: String,
}

impl FileLikeThing {
    fn iter(&self) -> IteratorOfStringReference {
        IteratorOfStringReference(&self.string)
    }
}

struct Dummy {
    xslg_file: FileLikeThing,
    buffer: String,
}

impl Dummy {
    fn dummy(&mut self) {
        for line in self.xslg_file.iter() {
            self.buffer.clear();

            for current_char in line.into_bytes().iter() {
                self.buffer.push(*current_char as char);
            }

            println!("{}", line);
        }
    }
}

fn main() {}
于 2015-01-26T21:51:37.160 回答