当前位置:编程学习 > JSP >>

实现多线程有哪两种方法.

实现多线程的两种方法.
/**继承Thread类*/
public class Test extends Thread {
 public Test() {
  Thread t = new Thread(this);
  t.start();
 }
 public static void main(String[] args) {
  Test t = new Test();
 }
 public void run(){
  while(true)
   System.out.println("继承Thread类");
 }
}
/**实现Runnable接口*/
public class Test2 implements Runnable {
 public Test2(){
  Thread t = new Thread(this);
  t.start();
 }
 public static void main(String[] args) {
  Test2 t2 = new Test2();
 }
 public void run() {
  while(true)
   System.out.println("实现Runnable接口");
 }
 



<
补充:Jsp教程,Java技巧及代码
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,