如何在 Rust 中初始化泛型变量

How to initialize a generic variable in Rust

T 上的泛型函数中,如何在安全(或不安全)Rust 中正确创建和初始化 T 类型的变量? T 可以是任何东西。做这种事情的惯用方式是什么?

fn f<T>() {
    let t: T = todo!("what to put here?");
}

一个可能的用例可能是使用 T 作为交换的临时变量。

Default 绑定到 T 是在泛型函数中构造泛型类型的惯用方法。

虽然 Default 特征没有什么特别之处,您可以声明一个类似的特征并在您的泛型函数中使用它。

此外,如果一个类型实现了 CopyClone,您可以根据需要从单个值初始化任意数量的副本和克隆。

评论的例子:

// use Default bound to call default() on generic type
fn func_default<T: Default>() -> T {
    T::default()
}

// note: there's nothing special about the Default trait
// you can implement your own trait identical to it
// and use it in the same way in generic functions
trait CustomTrait {
    fn create() -> Self;
}

impl CustomTrait for String {
    fn create() -> Self {
        String::from("I'm a custom initialized String")
    }
}

// use CustomTrait bound to call create() on generic type
fn custom_trait<T: CustomTrait>() -> T {
    T::create()
}

// can multiply copyable types
fn copyable<T: Copy>(t: T) -> (T, T) {
    (t, t)
}

// can also multiply cloneable types
fn cloneable<T: Clone>(t: T) -> (T, T) {
    (t.clone(), t)
}

playground