lambda多線程的代碼
/*
?*
?*/
public class LambdaThread {
?? ?
?? ?public static void main(String[] args) {
?? ??? ?
?? ??? ?//jdk1.8簡化版
?? ??? ?new Thread(()-> {
?? ??? ??? ??? ?for (int i = 0; i < 1000; i++) {
?? ??? ??? ??? ??? ?System.out.println("一邊聽歌");
?? ??? ??? ??? ?}
?? ??? ?}
?? ??? ??? ?).start();
?? ??? ?for (int i = 0; i < 500; i++) {
?? ??? ?System.out.println("一邊敲代碼");
?? ?}
?? ?}
}
標(biāo)簽: