标签:dem 表达 run方法 程序 style stat 启动 实现 方法
package com.inetTes01; /* 需求:启动一个线程,在控制台输出一句话:多线程程序启动了 */ import com.liushuaishuai.MyRunnable; public class lamadaDemo { public static void main(String[] args) { //实现类的方式,需要提前写一个类myRunnbale实现了Runnable接口并且重写run方法 // myRunnable my = new myRunnable(); // Thread t = new Thread(my); // t.start(); //匿名内部类的方式来改进 // new Thread(new Runnable() { // @Override // public void run() { // System.out.println("多线程程序启动了"); // } // }).start(); //lamada表达式的方式改进 new Thread(() -> { System.out.println("多线程程序启动了"); }).start(); } }
标签:dem 表达 run方法 程序 style stat 启动 实现 方法
原文地址:https://www.cnblogs.com/lsswudi/p/11442594.html