gpt4 book ai didi

rust - Rust 中相同类型的相同特征的多个实现

转载 作者:行者123 更新时间:2023-12-03 11:34:45 24 4
gpt4 key购买 nike

有了 Rust traits,我可以表达一个 Monoid 类型的类(请原谅我对方法的命名):

trait Monoid {
fn append(self, other: Self) -> Self;
fn neutral() -> Self;
}

然后,我还可以为字符串或整数实现特征:

impl Monoid for i32 {
fn append(self, other: i32) -> i32 {
self + other
}
fn neutral() -> Self { 0 }
}

但是,我现在如何在 i32 上为乘法情况添加另一个实现?

impl Monoid for i32 {
fn append(self, other: i32) -> i32 {
self * other
}
fn neutral() { 1 }
}

我尝试了类似于 functional 中所做的事情但该解决方案似乎依赖于在特征上有一个额外的类型参数,而不是对元素使用 Self,这给了我一个警告。

首选的解决方案是对操作使用标记特征 - 我也尝试过但没有成功。

最佳答案

正如@rodrigo 指出的那样,答案是使用标记结构

以下示例显示了一个工作片段:playground

trait Op {}
struct Add;
struct Mul;
impl Op for Add {}
impl Op for Mul {}

trait Monoid<T: Op>: Copy {
fn append(self, other: Self) -> Self;
fn neutral() -> Self;
}

impl Monoid<Add> for i32 {
fn append(self, other: i32) -> i32 {
self + other
}
fn neutral() -> Self {
0
}
}

impl Monoid<Mul> for i32 {
fn append(self, other: i32) -> i32 {
self * other
}
fn neutral() -> Self {
1
}
}

pub enum List<T> {
Nil,
Cons(T, Box<List<T>>),
}

fn combine<O: Op, T: Monoid<O>>(l: &List<T>) -> T {
match l {
List::Nil => <T as Monoid<O>>::neutral(),
List::Cons(h, t) => h.append(combine(&*t)),
}
}

fn main() {
let list = List::Cons(
5,
Box::new(List::Cons(
2,
Box::new(List::Cons(
4,
Box::new(List::Cons(
5,
Box::new(List::Cons(-1, Box::new(List::Cons(8, Box::new(List::Nil))))),
)),
)),
)),
);

println!("{}", combine::<Add, _>(&list));
println!("{}", combine::<Mul, _>(&list))
}

关于rust - Rust 中相同类型的相同特征的多个实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65832862/

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