gpt4 book ai didi

rust - 有没有办法在 Rust 中定义多参数特征?

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

在 Haskell 中,我可以定义一个引用两个或更多类型的类型类:

class Combiner a b c where
combine :: a -> b -> c

这称为多参数类型类。有没有办法直接或通过实现类似效果的宏在 Rust 中编写等效特征?像这样的东西:

trait Combiner {
fn combine(&self1, &self2) -> self3;
}

最佳答案

是的,你可以参数化特征:

trait Combiner<A, B, C> {
fn combine(a: &A, b: &B) -> C;
}

on the Rust playground

关于rust - 有没有办法在 Rust 中定义多参数特征?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57416624/

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