Rust
Verschlüsse und Lambda-Ausdrücke
Suche…
Einfache Lambda-Ausdrücke
// A simple adder function defined as a lambda expression.
// Unlike with regular functions, parameter types often may be omitted because the
// compiler can infer their types
let adder = |a, b| a + b;
// Lambdas can span across multiple lines, like normal functions.
let multiplier = |a: i32, b: i32| {
let c = b;
let b = a;
let a = c;
a * b
};
// Since lambdas are anonymous functions, they can be called like other functions
println!("{}", adder(3, 5));
println!("{}", multiplier(3, 5));
Dies zeigt an:
8
15
Einfache Verschlüsse
Im Gegensatz zu normalen Funktionen können Lambda-Ausdrücke ihre Umgebung erfassen. Solche Lambdas werden Schließungen genannt.
// variable definition outside the lambda expression...
let lucky_number: usize = 663;
// but the our function can access it anyway, thanks to the closures
let print_lucky_number = || println!("{}", lucky_number);
// finally call the closure
print_lucky_number();
Dies wird drucken:
663
Lambdas mit expliziten Rückgabetypen
// lambda expressions can have explicitly annotated return types
let floor_func = |x: f64| -> i64 { x.floor() as i64 };
An Lambdas vorbei
Da Lambda-Funktionen selbst Werte sind, speichern Sie sie in Sammlungen, übergeben sie an Funktionen usw., wie Sie es auch bei anderen Werten tun würden.
// This function takes two integers and a function that performs some operation on the two arguments
fn apply_function<T>(a: i32, b: i32, func: T) -> i32 where T: Fn(i32, i32) -> i32 {
// apply the passed function to arguments a and b
func(a, b)
}
// let's define three lambdas, each operating on the same parameters
let sum = |a, b| a + b;
let product = |a, b| a * b;
let diff = |a, b| a - b;
// And now let's pass them to apply_function along with some arbitary values
println!("3 + 6 = {}", apply_function(3, 6, sum));
println!("-4 * 9 = {}", apply_function(-4, 9, product));
println!("7 - (-3) = {}", apply_function(7, -3, diff));
Dies wird drucken:
3 + 6 = 9
-4 * 9 = -36
7 - (-3) = 10
Lambdas von Funktionen zurückgeben
Die Rückgabe von Lambdas (oder Schließungen) von Funktionen kann schwierig sein, da sie Merkmale implementieren und daher deren genaue Größe selten bekannt ist.
// Box in the return type moves the function from the stack to the heap
fn curried_adder(a: i32) -> Box<Fn(i32) -> i32> {
// 'move' applies move semantics to a, so it can outlive this function call
Box::new(move |b| a + b)
}
println!("3 + 4 = {}", curried_adder(3)(4));
Dies zeigt: 3 + 4 = 7
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow