首页 > 代码库 > java线程使用示例——最简单的线程
java线程使用示例——最简单的线程
java线程使用示例——最简单的线程
线程使用示例一:
public class ThreadTest { public static void main(String[] args) { //线程使用示例一: new Thread() { public void run() { while (true) { try { System.out.println("线程输出"); //休眠两秒 Thread.sleep(2 * 1000); } catch (InterruptedException e) { e.printStackTrace(); } } }; }.start(); } }线程使用示例二:
//线程使用示例二: Thread t1 = new Thread(new Runnable(){ public void run(){ System.out.println("Mythread 线程t1"); while(true){ Singleton3 single3 = Singleton3.getInstance(null); System.out.println("线程t1 >> " + single3.toString()); try { Thread.sleep(2000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } }); t1.start();
java线程使用示例——最简单的线程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。