1.
package com.kuang.demo01;
public class TestThread1 extends Thread {
public void run(){
for(int i=0;i<20;i++)
{
System.out.println("我在看代码 ---"+i);
}
}
public static void main(String[] args)
{
TestThread1 testThread1=new TestThread1();
testThread1.start();
for(int i=0;i<20;i++)
{
System.out.println("我在学习多线程 ---"+i);
}
}
}
2. Runnable
package com.kuang.demo01;
public class TestThread3 implements Runnable {
public void run(){
for(int i=0;i<20;i++)
{
System.out.println("我在看代码 ---"+i);
}
}
public static void main(String[] args)
{
TestThread3 testThread3=new TestThread3();
new Thread(testThread3).start();
for(int i=0;i<20;i++)
{
System.out.println("我在学习多线程 ---"+i);
}
}
}
3.