JAVA多线程
Posted kingwzun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA多线程相关的知识,希望对你有一定的参考价值。
进程
概念:
多线程
public class MyRunnable extends Thread{
public void run() {
for(int i=0;i<20;i++) {
try {
Thread.sleep(1);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+" "+i);
}
}
}
public class Test {
public static void main(String[] args) {
/*Main t1=new Main();
Main t2=new Main();
//t1.run();体现不出多线程
t1.start();
t2.start();
*/
MyRunnable r1=new MyRunnable();
Thread t3=new Thread(r1);
MyRunnable r3=new MyRunnable();
Thread t4=new Thread(r3);
t3.start();
t4.start();
}
}
以上是关于JAVA多线程的主要内容,如果未能解决你的问题,请参考以下文章