class xianCheng extends Thread {
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(getName() + "====" + i);// 因为xianCheng这个类已经继承了thread这个类了,所以可以直接使用他里面的getName()方法
}
System.out.println("这个线程结束啦");
}
}
class Demo {
public static void main(String[] args) {
// TODO Auto-generated method stub
xianCheng x = new xianCheng();
xianCheng x2 = new xianCheng();
x.start();
x2.start();
for (int i = 0; i < 10; i++) {
System.out.println(Thread.currentThread().getName() + "-----" + i);// 由于main方法中没有getName这个方法,通过currentThread()返回thread类来调用getName方法
}
}
}
当一个线程挂了的时候不会影响其它线程的运行。