public class Test extends Thread { private String sThreadName; public static void main(String[] args) { Test h = new Test(); h.go(); } Test() { } Test(String s) { sThreadName = s; } public String getThreadName() { return sThreadName; } public void go() { Test first = new Test("first"); first.start(); Test second = new Test("second"); second.start(); } public void start() { for (int i = 0; i < 2; i++) { System.out.println(getThreadName() + i); try { Thread.sleep(100); } catch (InterruptedException e) { System.out.println(e.getMessage());
时间: 2024-03-19 20:41:17 浏览: 72
SCJP Braindump SCJP 题库 SCJP 考题
这段代码是一个继承自Thread类的多线程程序。在main方法中,创建了一个Test类的对象h,并调用了它的go()方法。在go()方法中,创建了两个Test类的对象first和second,并分别启动了它们的线程。在Test类的start()方法中,使用一个for循环来输出线程名和一个计数器i的值,并使用Thread.sleep()方法使线程休眠100毫秒。由于Test类继承自Thread类,因此它可以被启动为一个单独的线程,并且可以使用start()方法来启动它的线程。在本例中,由于Test类没有重写run()方法,因此默认使用Thread类的run()方法来执行线程。在run()方法中,会执行在start()方法中定义的for循环,因此会输出线程名和计数器的值。由于启动了两个Test类的对象,因此会有两个线程同时执行,并且会交替输出它们的线程名和计数器的值。
阅读全文