java_multithread/src/createthread/CreateByRunnable.java

14 lines
349 B
Java
Raw Normal View History

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();
}
}