rust引用问题?
fn main() {
let mut x = String::from("hi");
let b=push(&mut x);//1
println!("{}",x);//2
println!("The value of x is: {}--",b);//3
}
fn push(s:&mut String)->&String{
s.push_str("tt");
return s
}
编译器报错提示很清楚,但是不太理解:"cannot borrow x
as immutable because it is also borrowed as mutable",
2处提示"immutable borrow occurs here",这里打印x并没有加&,为什么会提示borrow,在1处虽然是可变引用,但是终归还是引用,所以x并没有被借走,还应该能打印,该去怎样理解这里的错误?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为你标记3的那里还在使用b,导致mutable borrow的作用域是你标记的1 2 3三行,在此期间,你不能再次有任何borrow行为了。
至于你不理解的地方,官方描述就是操作你借走的资源。
A ‘mutable reference’ allows you to mutate the resource you’re borrowing.
https://doc.rust-lang.org/1.8...
其实很好理解,如果引用不算borrow的话,那么rust真个borrow机制就不可能工作了。