展开全部
public class TestThread extends Thread{
public TestThread() {
}
@Override
public void run() {
System.out.println("启动了一个线程");
System.out.println("name:"+Thread.currentThread().getName());
}
public static void main(String[] args) {
Thread t1 = new TestThread();
Thread t2 = new TestThread();
t1.start();
t2.start();
}
}
结果:
启动了一个线程
name:Thread-0
启动了一个线程
name:Thread-1
public TestThread() {
}
@Override
public void run() {
System.out.println("启动了一个线程");
System.out.println("name:"+Thread.currentThread().getName());
}
public static void main(String[] args) {
Thread t1 = new TestThread();
Thread t2 = new TestThread();
t1.start();
t2.start();
}
}
结果:
启动了一个线程
name:Thread-0
启动了一个线程
name:Thread-1
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询