位置:首页 > 软件操作教程 > 编程开发 > Java > 问题详情

Java如何写多线程

提问人:荣凡88发布时间:2020-10-13

1.分别定义不同的线程类,在各自的run方法中定义线程的工作

 class mythread1 extends Thread

  { public void run{….}    }

  class mythread2 extends Thread

  { public void run{….}    }

2. 在主类中实例化各线程类,并启动线程.

   public class demo extends Applet

   { public void init()

     { mythread t1=new mythread1();

        mythread t2=new mythread2();

        t1.start(); t2.start();}    }

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部