14 lines
276 B
Java
14 lines
276 B
Java
package lecture.multithreading.basics;
|
|
|
|
|
|
public class ThreadVsRunnable {
|
|
public static void main(String[] args) {
|
|
|
|
MyThread thread1 = new MyThread();
|
|
thread1.start();
|
|
|
|
Thread thread2 = new Thread(new MyRunnable());
|
|
thread2.start();
|
|
}
|
|
}
|