gpt4 book ai didi

rust - 类型提示结构作为特征

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

我有一个方法 (Journal.next_command()),其签名返回 Command 特征。在方法中,我试图返回 Jump 结构的实例,它实现了 Command 特征:

trait Command {
fn execute(&self);
}

struct Jump {
height: u32,
}

impl Command for Jump {
fn execute(&self) {
println!("Jumping {} meters!", self.height);
}
}

struct Journal;

impl Journal {
fn next_command(&self) -> Command {
Jump { height: 2 }
}
}

fn main() {
let journal = Journal;
let command = journal.next_command();
command.execute();
}

编译失败,出现以下错误:

src/main.rs:19:9: 19:27 error: mismatched types:
expected `Command`,
found `Jump`
(expected trait Command,
found struct `Jump`) [E0308]
src/main.rs:19 Jump { height: 2 }
^~~~~~~~~~~~~~~~~~

如何通知编译器 Jump 实现了 Command

最佳答案

目前您无法返回未装箱的特征,它们需要包装在某种容器中。

fn next_command(&self) -> Box<Command> {
Box::new(Jump { height: 2 })
}

这有效。

关于rust - 类型提示结构作为特征,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29176667/

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