java_multithread/src/createthread/CreateByRunnable.java
Jason Lu f5472740be add recursive path find demo
add demo for creating new thred
2025-02-17 09:35:24 +08:00

14 lines
349 B
Java

package createthread;
public class CreateByRunnable implements Runnable{
@Override
public void run() {
System.out.println("create by implementing Runnable");
}
public static void main(String[] args) {
CreateByRunnable createByRunnable = new CreateByRunnable();
new Thread(createByRunnable).start();
}
}