Ricerca…


Dichiarazione

// Generic types are declared using the <T> annotation

struct GenericType<T> {
    pub item: T
}

enum QualityChecked<T> {
    Excellent(T),
    Good(T),
    // enum fields can be generics too
    Mediocre { product: T }
}

la creazione di istanze

// explicit type declaration
let some_value: Option<u32> = Some(13);

// implicit type declaration
let some_other_value = Some(66);

Parametri di tipo multiplo

I tipi generici possono avere più di un parametro di tipo, ad es. Result è definito in questo modo:

pub enum Result<T, E> {
    Ok(T),
    Err(E),
}

Tipi generici limitati

// Only accept T and U generic types that also implement Debug
fn print_objects<T: Debug, U: Debug>(a: T, b: U) {
    println!("A: {:?} B: {:?}", a, b);
}

print_objects(13, 44);
// or annotated explicitly
print_objects::<usize, u16>(13, 44);

I limiti devono coprire tutti gli usi del tipo. L'addizione è fatta da std::ops::Add trait, che ha i parametri di input e output stessi. where T: std::ops::Add<u32,Output=U> afferma che è possibile Add T a u32 , e questa aggiunta deve produrre il tipo U

fn try_add_one<T, U>(input_value: T) -> Result<U, String> 
    where T: std::ops::Add<u32,Output=U> 
{
    return Ok(input_value + 1);
}

Sized limite Sized è implicito per impostazione predefinita. ?Sized ridimensionato consente tipi non identificati.

Funzioni generiche

Le funzioni generiche consentono di parametrizzare alcuni o tutti i loro argomenti.

fn convert_values<T, U>(input_value: T) -> Result<U, String> {
  // Try and convert the value.
  // Actual code will require bounds on the types T, U to be able to do something with them.
}

Se il compilatore non può dedurre il parametro type, può essere fornito manualmente alla chiamata:

let result: Result<u32, String> = convert_value::<f64, u32>(13.5);


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow