码迷,mamicode.com
首页 > 其他好文 > 详细

jdk8新特性

时间:2018-11-30 11:32:19      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:system   integer   ack   pac   port   pack   jdk8   html   特性   

https://www.cnblogs.com/justcooooode/p/7701260.html#_label0

package com;
import java.util.Comparator;
import javax.swing.JButton;

public class Test2 {
public static void main(String[] args) {
new Thread(() -> {
for (int i = 0; i < 100; i++)
System.out.println("Lambda Expression");
}).start();
}
public static void test() {
Comparator<String> c = (s1, s2) -> Integer.compare(s1.length(), s2.length());
JButton button = new JButton("click");
button.addActionListener(e -> System.out.println("Lambda Expression"));
}
}

jdk8新特性

标签:system   integer   ack   pac   port   pack   jdk8   html   特性   

原文地址:http://blog.51cto.com/wenyuancheng/2324077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!