gpt4 book ai didi

rust - 不能借用 `*` 作为不可变的,因为 `*self` 也被借用为可变的 [E0502]

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

这是我所有的代码:

use std::collections::HashMap;

pub struct Book<'a> {
page: Vec<&'a str>,
histories: HashMap<&'a str, &'a str>,
}

impl<'a> Book<'a> {
pub fn new(page: Vec<&'a str>) -> Book<'a> {
let histories = HashMap::new();
Book {
page: page,
histories: histories
}
}

pub fn process(&mut self, line: &str, book_id: &'a str) {

let page_c = self.get_page(book_id);
println!("page_c {}", page_c);

for history in self.histories.iter() {
println!("histories...");
}
}

fn get_page(&mut self, book_id: &'a str) -> &str {
if !self.histories.contains_key(book_id) {
println!("not history found for book {}", book_id);
self.histories.insert(book_id, "history A");
}
self.histories.get(book_id).unwrap()
}
}

fn main() {
println!("Hello, world!");
let mut pages = Vec::new();
let st = "page1";
pages.push(st);

let mut biblio = Book::new(pages);

let sentence = "this is a line of page";
let book_id = "onebook";
biblio.process(sentence, book_id);
}

这不编译:

src/main.rs:22:24: 22:38 error: cannot borrow `self.histories` as immutable because `*self` is also borrowed as mutable [E0502]
src/main.rs:22 for history in self.histories.iter() {
^~~~~~~~~~~~~~
src/main.rs:19:22: 19:26 note: previous borrow of `*self` occurs here; the mutable borrow prevents subsequent moves, borrows, or modification of `*self` until the borrow ends
src/main.rs:19 let page_c = self.get_page(book_id);
^~~~
src/main.rs:25:6: 25:6 note: previous borrow ends here
src/main.rs:17 pub fn process(&mut self, line: &str, book_id: &'a str) {
...
src/main.rs:25 }
^
error: aborting due to previous error
Could not compile `tempo`.

我理解错误信息,但经过研究和阅读后similar questions ,我不明白如何修复我的代码。

最佳答案

修复代码的最简单方法是不为 page_c 引入额外的变量,而是直接使用 get_page 的结果:

pub fn process(&mut self, line: &str, book_id: &'a str) {
println!("page_c {}", self.get_page(book_id));

for history in self.histories.iter() {
println!("histories...");
}
}

这样,当您进入for 循环时,self 不会被借用,因为它只是在调用println 时被借用.如果你确实想要 page_c 的变量,你可以在一个额外的范围内引入它,所以借用将在范围的末尾(因此在循环之前):

pub fn process(&mut self, line: &str, book_id: &'a str) {
{
let page_c = self.get_page(book_id);
println!("page_c {}", page_c);
} // page_c ceases to exist here, so the borrow of self ends
for history in self.histories.iter() {
println!("histories...");
}
}

关于rust - 不能借用 `*` 作为不可变的,因为 `*self` 也被借用为可变的 [E0502],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33724863/

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