- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为特定类型的新向量设置生命周期。我了解生命周期和借贷。那不是问题。问题是将生命周期设置为 <'a>.
的实际语法
我一直收到关于矢量的生命周期不够长的错误,但是当我尝试设置生命周期时,我得到了一个不同的错误。这是我的代码的样子。
#[derive(Clone, Copy, Debug)]
pub struct ProfessorGroup<'a> {
name: &'a str,
gender: Gender,
professors: &'a Vec<Professor<'a>>,
rank: ProfessorRank,
attrition_rate:f64,
promotion_rate:f64,
hiring_rate:f64,
current_number:i32,
}
impl<'a> Default for ProfessorGroup<'a>{
fn default() -> ProfessorGroup<'a>{
ProfessorGroup {
name: "uninitialized group",
gender: Gender::Female,
professors:&mut Vec<'a>::<Professor<'a>>::new(),//PROBLEM CODE
rank: ProfessorRank::Assistant,
attrition_rate: 0.0,
promotion_rate: 0.0,
hiring_rate: 0.0,
current_number: 0,
}
}
}
我得到的错误是:
error: expected `:`, found `>`
--> src/Actors/ProfessorGroups.rs:21:35
|
21 | professors:&mut Vec<'a>::<Professor<'a>>::new(),
| ^
error[E0063]: missing fields `attrition_rate`, `current_number`, `hiring_rate` and 3 other fields in initializer of `Actors::ProfessorGroups::ProfessorGroup<'_>`
该错误似乎终止了对以下字段的访问——因此缺少字段注释。
我试过了 professors:&mut <'a>Vec::<Professor<'a>>::new(),
但这给出了同样的错误。
我一共拿出了一生professors:&mut Vec::<Professor<'a>>::new(),
但这只是给了我一个错误,即向量的生命周期不够长。
我查看了文档,但我找到的最接近的是这样的东西,它也不起作用:https://users.rust-lang.org/t/why-cant-i-specify-type-parameters-directly-after-the-type/2365
谁能看出我哪里有语法错误?
最佳答案
减少,你最终得到类似的东西
struct Professor<'a>(&'a u8);
pub struct ProfessorGroup<'a> {
professors: &'a Vec<Professor<'a>>,
}
impl<'a> Default for ProfessorGroup<'a> {
fn default() -> ProfessorGroup<'a> {
ProfessorGroup {
professors: &mut Vec<'a>::<Professor<'a>>::new(),
}
}
}
顺序:
Vec
, 不是 &Vec
.此外,您想匹配 &mut value
至 &mut Type
和 &value
至 &Type
, 不要越过它们。<'a>
得到:Vec::<Professor<'a>>::new()
.这编译。Vec::new()
. Vec
还实现了 Default
本身,所以对于这个小例子,你可以只#[derive(Default)]
.如果有意义,您可以只实现(或派生)Default
对于所有组件类型。
I understand about lifetimes and borrowing. That is not the problem.
由于行的这一部分,您可能希望重新评估您对此声明的信心:
professors: &mut Vec<'a>::<Professor<'a>>::new()
// ^^^^
你 cannot return a reference to a value created in a function , 没有异常(exception)。生命周期阻止了这种情况。
您还应该查看如何创建 Minimal, Complete, Verifiable Example .在这种情况下,为什么你有 8 个字段 与你的问题无关?你为什么不分享你包含的所有类型的定义?当试图理解任何 编程问题时,减少它直到只剩下问题。
关于vector - 无法在新的空向量上设置生命周期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43875165/
我正在开发一个使用多个 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
我是一名优秀的程序员,十分优秀!