gpt4 book ai didi

rust - 是否有指定数字功能的任何特征?

转载 作者:行者123 更新时间:2023-11-29 07:46:28 25 4
gpt4 key购买 nike

我想使用特征来绑定(bind)泛型类型,就像这个假设的HasSQRT:

fn some_generic_function<T>(input: &T)
where
T: HasSQRT,
{
// ...
input.sqrt()
// ...
}

最佳答案

您可以使用 numnum-traits使用 num::Float 包装并绑定(bind)您的通用函数类型, num::Integer或任何相关特征:

use num::Float; // 0.2.1

fn main() {
let f1: f32 = 2.0;
let f2: f64 = 3.0;
let i1: i32 = 3;

println!("{:?}", sqrt(f1));
println!("{:?}", sqrt(f2));
println!("{:?}", sqrt(i1)); // error
}

fn sqrt<T: Float>(input: T) -> T {
input.sqrt()
}

关于rust - 是否有指定数字功能的任何特征?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37296351/

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