"Lambda表达式" is not found on TREX in Chinese-English direction
Try Searching In English-Chinese (Lambda表达式)

Low quality sentence examples

对新语言特性友好,如lambda表达式
Should be friendly towards new language features such as lambda expressions.
而且lambda表达式可以赋值给一个变量.
When value of lambda expression is stored in a variable.
我们可以(并且经常如此)使用lambda表达式作为函数。
We can(and often will) use lambda expressions as the function.
一个Lambda表达式可以返回另一个表达式。
A Lambda expression can also return another Lambda expression..
在其它语言中,Lambda表达式的类型是一个函数.
In languages that support first class functions, the type of the lambda expression would be a function;
Lambda表达式实际上是一个函数,只是它没有名字。
A lambda expression, on the other hand, is just a function that has no name.
匿名函数不能直接调用打印,因为需要lambda表达式
An anonymous function cannot be a direct call to print because lambda requires an expression.
我们首先来看一个使用lambda表达式的简单示例。
Now we will give simple example to use lambda expressions.
下面的例子是用lambda表达式过滤Java集合,将帮助理解。
The following example filters Java collections with lambda expressions to help understand.
我们还研究了使用lambda表达式对现有设计模式采用稍微不同的方法。
We have also looked at applying a slightly different approach to the existing Design Patterns using lambda expressions.
Java社群中曾经有过针对是否要加入lambda表达式支援的辯論。
There was an ongoing debate in the Java community on whether to add support for lambda expressions.
一个Lambda表达式可以存取在它被调用的作用域内的局部变量。
A lambda expression can access local variables in the scope in which it is used.
这将使move-only类型被值捕获,并使Lambda表达式在其闭包对象中定义任意数据成员。
This enables move-only types to be captured by value and enables a lambda expression to define arbitrary data members in its closure object.
为了阐述,它叫做闭包类型(closuretype),而由lambda表达式产生的临时对象叫做闭包对象。
For presentation purposes, it's called the"closure type," whereas the temporary object resulting from the lambda expression is the"closure object..
作为最重要的特性,即所谓的“Lambda表达式”,它开启了函数式编程的大门。
With the most important feature, the so-called“Lambda Expressions”, it opened the door to functional programming.
由于变量n是通过值捕获的,因此在调用lambda表达式后,变量的值仍保持0不变。
Because the variable n is captured by value, its value remains 0 after the call to the lambda expression.
既然lambda表达式即将正式取代Java代码中的匿名内部类,那么有必要对二者做一个比较分析。
Since lambda expressions are about to formally replace anonymous inner classes in Java code, it is necessary to make a comparative analysis of them.
使用Async功能,您可以调用异步方法,而不定义延续任务或通过多个方法或lambda表达式拆分您的代码。
By using the Async feature, you can call asynchronous methods without defining continuations or splitting your code across multiple methods or lambda expressions.
MarkReinhold,甲骨文的首席架构师,将Lambda表达式描述为该编程模型最大的提升--比泛型(generics)还强大。
Mark Reinhold, Oracle's Chief Architect, describes Lambda expressions as the single largest upgrade to the programming model ever- larger even than generics.
然而,这种模式是关于使用lambda表达式并实现一种编码风格,这将增强现有流行的设计模式之一。
However this pattern is about using lambda expressions and implements a coding style, which will enhance one of the existing popular Design Patterns.