gpt4 book ai didi

struct - '&self'和 '&' a self'有什么区别?

转载 作者:行者123 更新时间:2023-12-03 11:48:18 29 4
gpt4 key购买 nike

我最近遇到了一个错误,只需通过更改即可解决

impl<'a> Foo<'a> {
fn foo(&'a self, path: &str) -> Boo<'a> { /* */ }
}


impl<'a> Foo<'a> {
fn foo(&self, path: &str) -> Boo { /* */ }
}

根据我的理解,这没有任何意义,因为我认为第二个版本与第一个使用了生命周期省略的版本完全相同。

如果我们为该方法引入了新的生命周期,那么根据 nomicon的示例,情况似乎如此。
fn get_mut(&mut self) -> &mut T;                        // elided
fn get_mut<'a>(&'a mut self) -> &'a mut T; // expanded

那么,这和我的第一个代码片段之间有什么区别。

最佳答案

'a中的生命周期fn foo(&'a self, ...) ...是为impl<'a>定义的,即所有foo调用都相同。

为该功能定义了'a中的终生fn get_mut<'a>(&'a mut self) ...。不同的get_mut调用可以具有不同的'a值。

您的验证码

impl<'a> Foo<'a> {
fn foo(&'a self, path: &str) -> Boo<'a> { /* */ }
}


不能延长淘汰期。该代码将借用 &'a self的生存期与结构 Foo<'a>的生存期联系起来。如果 Foo<'a>'a上是不变的,则 self应该与 'a一样保持借用状态。

延长使用生命周期的正确方法是
impl<'a> Foo<'a> {
fn foo<'b>(&'b self, path: &str) -> Boo<'b> { /* */ }
}

此代码不依赖于 Foo结构的变化而能够借用 self来缩短生命周期。

变异和不变结构之间差异的示例。
use std::cell::Cell;

struct Variant<'a>(&'a u32);

struct Invariant<'a>(Cell<&'a u32>);

impl<'a> Variant<'a> {
fn foo(&'a self) -> &'a u32 {
self.0
}
}

impl<'a> Invariant<'a> {
fn foo(&'a self) -> &'a u32 {
self.0.get()
}
}

fn main() {
let val = 0;
let mut variant = Variant(&val);// variant: Variant<'long>
let mut invariant = Invariant(Cell::new(&val));// invariant: Invariant<'long>
{
let r = variant.foo();
// Pseudocode to explain what happens here
// let r: &'short u32 = Variant::<'short>::foo(&'short variant);
// Borrow of `variant` ends here, as it was borrowed for `'short` lifetime

// Compiler can do this conversion, because `Variant<'long>` is
// subtype of Variant<'short> and `&T` is variant over `T`
// thus `variant` of type `Variant<'long>` can be passed into the function
// Variant::<'short>::foo(&'short Variant<'short>)
}
// variant is not borrowed here
variant = Variant(&val);

{
let r = invariant.foo();
// compiler can't shorten lifetime of `Invariant`
// thus `invariant` is borrowed for `'long` lifetime
}
// Error. invariant is still borrowed here
//invariant = Invariant(Cell::new(&val));
}

Playground link

关于struct - '&self'和 '&' a self'有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62802299/

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