package day26;
/**
*
* @author 丢了風筝的線
* @see jdk1.8的新特性,lambda表達式的使用,用來簡化簡單的線程任務以及隻使用一次或者很少次的線程
*/
public class Lambda {
public static void main(String[] args) {
// 線程一
new Thread(() -> System.out.println(Thread.currentThread().getName()), "線程一").start();
// 線程二
new Thread(() -> {
for (int i = 0; i < 100; i++) {
System.out.println(Thread.currentThread().getName() + "--->" + i);
}
}, "線程二").start();
// 主線程
for (int i = 0; i < 10; i++) {
System.out.println(Thread.currentThread().getName() + "-->" + i);
}
}
}