1 package com.hanqi.xc; 2 3 public class Test1 { 4 5 public static void main(String[] args) { 6 7 // 线程测试 8 for (int i = 0; i < 10; i++) { 9 System.out.println("i = " + i); 10 11 // 通过线程类,控制线程 12 try { 13 // 让主线程休眠100毫秒 14 Thread.sleep(100); 15 16 } catch (InterruptedException e) { 17 // TODO 自动生成的 catch 块 18 e.printStackTrace(); 19 } 20 21 } 22 23 Test2 t2 = new Test2(); 24 25 // 单线程 26 // t2.test(); 27 28 // 启动新线程 29 30 t2.start(); 31 32 Test2 t3 = new Test2(); 33 34 t3.start(); 35 36 Test2 t4 = new Test2(); 37 38 t4.start(); 39 40 //启动接口方式的分线程 41 42 Thread th = new Thread(new Test3(),"接口线程4"); 43 44 th.start(); 45 } 46 47 48 49 50 51 52 53 54 55 }
package com.hanqi.xc; //以继承的方式支持多线程 public class Test2 extends Thread { //重写run方法 @Override public void run () { //调应需要并发执行的语句 test(); } // 测试方法 public void test() { for (int i = 0; i < 10; i++) { System.out.println("i = " + i); // 通过线程类,控制线程 try { // 让主线程休眠100毫秒 Thread.sleep(100); } catch (InterruptedException e) { // TODO 自动生成的 catch 块 e.printStackTrace(); } } }
package com.hanqi.xc; public class Test3 implements Runnable { @Override public void run() { //需要分线程执行的代码 for (int i = 0; i < 10; i++) { System.out.println("i = " + i); // 通过线程类,控制线程 try { // 让主线程休眠100毫秒 Thread.sleep(100); } catch (InterruptedException e) { // TODO 自动生成的 catch 块 e.printStackTrace(); } } } }
时间: 2024-11-08 02:05:31