Szukaj…


Deklaracja

// 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 }
}

Instancja

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

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

Parametry wielu typów

Typy ogólne mogą mieć więcej niż jeden parametr typu, np. Result jest zdefiniowany w następujący sposób:

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

Ograniczone typy ogólne

// 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);

Granice muszą obejmować wszystkie zastosowania tego typu. Dodawanie odbywa się za pomocą cechy std::ops::Add , która ma same parametry wejściowe i wyjściowe. where T: std::ops::Add<u32,Output=U> stwierdza, że można Add T do u32 , a to dodanie musi dać typ 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 związany zakłada się domyślnie. ?Sized bound dopuszcza również typy nieskalowane.

Funkcje ogólne

Funkcje ogólne pozwalają na sparametryzowanie niektórych lub wszystkich ich argumentów.

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.
}

Jeśli kompilator nie może wywnioskować parametru typu, można go podać ręcznie po wywołaniu:

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


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow