作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
拥有这些相当人为的类型定义
trait Generic<T> {
fn some(&self) -> T;
}
impl<T> Generic<T> for i32
where
T: Default,
{
fn some(&self) -> T {
T::default()
}
}
some
显式指定类型 T 的方法。下面的代码显然不起作用,因为该方法本身不是通用的。
fn main() {
let int: i32 = 45;
println!( "some: {}", int.some<bool>() );
}
some
?
最佳答案
正如您所尝试的那样,您必须指定确切的类型。不幸的是,您的函数不是通用的,而是您的实现是通用的,因此您必须执行以下操作:
fn main() {
let int: i32 = 45;
println!("some: {}", <i32 as Generic<bool>>::some(&int));
// Or,
println!("some: {}", Generic::<bool>::some(&int));
}
trait HasSome {
fn other_some<T>(&self) -> T where Self: Generic<T> {
<Self as Generic<T>>::some(self)
}
}
impl<T> HasSome for T {} // Blanket impl.
::<>
运算符(operator):
let foo = Vec::<i32>::new(); // Vec<i32>
let foo = my_generic_function::<usize>(); // Calls my_generic_function with usize
let foo = Option::<usize>::None;
let foo = None::<usize>;
关于rust - 如何在 Rust 中调用泛型 trait 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59475692/
我是一名优秀的程序员,十分优秀!