本文介绍了有没有办法组合多个特征来定义一个新特征?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法组合多个特征(通过继承?)来定义一个新特征?我正在寻找类似 C++ 概念的东西:
Is there a way to combine multiple traits (by inheritance?) in order to define a new trait? I'm looking for something like concepts in C++:
auto concept newConcept<typename T> : concept1<T>, concept2<T>, concept3<T> {};
假设我想创建一个继承自 Clone
、Default
和其他一些 trait 的新 trait,这可能吗?
Suppose I want to make a new trait that inherits from Clone
, Default
and some other traits, is that possible?
推荐答案
是的!
trait NewTrait: Clone + Default + OtherTraits {}
impl<T> NewTrait for T where T: Clone + Default + OtherTraits {}
这篇关于有没有办法组合多个特征来定义一个新特征?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!