mainthread.java~1~

来自「本程序用JAVA编制」· JAVA~1~ 代码 · 共 27 行

JAVA~1~
27
字号
class main extends Thread{  public main(String stock){    super(stock);    //this.setDaemon(true);  }  public void run(){    SimpleThread mt=new SimpleThread("qlsh");    try{      //mt=new SimpleThread("qlsh");      mt.start();    }catch(Exception e){      mt.stop();      mt.start();    }  }}public class MainThread{  public static void main(String[] args) throws InterruptedException {    new main("qlsh").start();  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?