gpt4 book ai didi

oop - Rust 特征对象的 &self 不能在特征默认函数中使用

转载 作者:行者123 更新时间:2023-11-29 08:04:01 25 4
gpt4 key购买 nike

试图覆盖特征转换问题,描述 here .坚持实现 trait 函数,该函数返回带有自己内部实现的枚举实例:

//the "trait matcher" enum
enum Side<'a> {
Good(&'a GoodDude),
Bad(&'a BadDude),
}

//very general trait
trait Dude {
fn who_am_i(&self) -> Side;
fn do_useful_stuff(&self);
}

//specific trait #1
trait GoodDude: Dude {
fn who_am_i_inner(&self) -> Side {
Side::Good(&self)
}

fn save_the_world(&self);
}

//specific trait #2
trait BadDude: Dude {
fn who_am_i_inner(&self) -> Side {
Side::Bad(&self)
}

fn do_evil(&self);
}

但是由于某种原因,这部分的编译失败了 E0277 :

trait GoodDude: Dude {        
fn who_am_i_inner(&self) -> Side {
Side::Good(&self) //&self should be &GoodDude, but compiler says it is not...
}

fn save_the_world(&self);
}

结果是:

<anon>:16:20: 16:25 error: the trait `GoodDude` is not implemented for the type `&Self` [E0277]
<anon>:16 Side::Good(&self)
^~~~~
<anon>:16:20: 16:25 help: see the detailed explanation for E0277
<anon>:16:20: 16:25 note: required for the cast to the object type `GoodDude`

这能解决吗?

完整示例:https://play.rust-lang.org/?gist=8ae2384e401da76c16214c4a642ce8b4&version=stable&backtrace=0

最佳答案

首先,fn who_am_i_innerself的类型已经是一个引用,所以你不需要&

fn who_am_i_inner(&self) -> Side {
Side::Good(self)
}

但是 rustc 提示...

<anon>:13:20: 13:24 error: the trait `core::marker::Sized` is not implemented for the type `Self` [E0277]
<anon>:13 Side::Good(self)
^~~~
<anon>:13:20: 13:24 help: see the detailed explanation for E0277
<anon>:13:20: 13:24 note: `Self` does not have a constant size known at compile-time
<anon>:13:20: 13:24 note: required for the cast to the object type `GoodDude`

诚然,错误信息非常不清楚,E0277 是关于完全不同的东西。让我们尝试使用夜间编译器,它会提供更好的错误消息:

error: the trait bound `Self: std::marker::Sized` is not satisfied [--explain E0277]
--> <anon>:13:20
13 |> Side::Good(self)
|> ^^^^
help: consider adding a `where Self: std::marker::Sized` bound
note: required for the cast to the object type `GoodDude`

好的,让我们尝试添加 where Self: Sized:

fn who_am_i_inner(&self) -> Side where Self: Sized {
Side::Good(self)
}

现在可以了。

World saved. Press any key to continue
May the 4th be with you
Pew Pew Pew
Luke I am yr father


where Self: Sized 是 Rust 表示 the method cannot be used from trait objects 的方式.如果您喜欢 C++,我们会说该方法从“对象安全”中忽略,或者“不能是虚拟的”。

效果是,如果你得到的只是luke: &GoodDude,那么你就不能调用luke.who_am_i_inner(),因为*luke大小未知。

我们需要使方法不是对象安全的原因是由于强制转换 &Self → &GoodDude。在 Rust 中,像 &GoodDude 这样的特征对象引用是一个胖指针,在内部它被表示为一个二元组 (pointer, method_table)。然而,在一个特征中,self 是一个瘦指针。

我们无法将瘦指针转换为胖指针,因为缺少信息,即 method_table。如果我们知 Prop 体类型,就可以填写。这就是我们添加 where Self: Sized 的原因。

如果你想让 who_am_i_inner 对象安全,那么你不能提供默认实现。

关于oop - Rust 特征对象的 &self 不能在特征默认函数中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37654857/

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