YngwieWang commented on a change in pull request #9299: [FLINK-13405][docs-zh] 
Translate "Basic API Concepts" page into Chinese
URL: https://github.com/apache/flink/pull/9299#discussion_r317594392
 
 

 ##########
 File path: docs/dev/api_concepts.zh.md
 ##########
 @@ -499,18 +420,18 @@ class MyMapFunction implements MapFunction<String, 
Integer> {
 data.map(new MyMapFunction());
 {% endhighlight %}
 
-#### Anonymous classes
+#### 匿名类
 
-You can pass a function as an anonymous class:
+可以将函数作为匿名类传递:
 {% highlight java %}
 data.map(new MapFunction<String, Integer> () {
   public Integer map(String value) { return Integer.parseInt(value); }
 });
 {% endhighlight %}
 
-#### Java 8 Lambdas
+#### Java 8 Lambda 表达式
 
-Flink also supports Java 8 Lambdas in the Java API.
+Flink 也支持 Java API 的 Java 8 Lambda 表达式。
 
 Review comment:
   👍 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to