作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
锈迹与非词汇寿命有关,RFC在语言中长期存在。has been approved,Rust对这个特性的支持已经改进了很多,并且被认为是完整的。
我的问题是:什么是非词汇生命?
最佳答案
通过理解AA>生命是什么,最容易理解什么是非词汇生命。在存在非词汇生命周期之前的锈迹版本中,此代码将失败:
fn main() {
let mut scores = vec![1, 2, 3];
let score = &scores[0];
scores.push(4);
}
scores
被
score
变量借用,因此它不允许
scores
的进一步变异:
error[E0502]: cannot borrow `scores` as mutable because it is also borrowed as immutable
--> src/main.rs:4:5
|
3 | let score = &scores[0];
| ------ immutable borrow occurs here
4 | scores.push(4);
| ^^^^^^ mutable borrow occurs here
5 | }
| - immutable borrow ends here
score
从不被使用!问题是,
scores
借的
score
是
lexical-它一直持续到包含它的块的末端:
fn main() {
let mut scores = vec![1, 2, 3]; //
let score = &scores[0]; //
scores.push(4); //
// <-- score stops borrowing here
}
fn example(mut map: HashMap<i32, i32>, key: i32) {
match map.get_mut(&key) {
Some(value) => *value += 1,
None => {
map.insert(key, 1);
}
}
}
fn example(mut map: HashMap<i32, i32>, key: i32) {
*map.entry(key).or_insert(0) += 1;
}
entry
pattern)。被称为非词汇生命周期的特征不会改变任何值的生命周期,因此它不能使生命非词汇化。它只会使对这些价值的借款的跟踪和检查更加精确。
[package]
name = "foo"
version = "0.0.1"
authors = ["An Devloper <an.devloper@example.com>"]
edition = "2018"
#![feature(nll)]
-Z polonius
,您甚至可以选择使用NLL的实验版本。
关于rust - 什么是非词汇生命周期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57189167/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!