package javastudy01;
class MyThread extends Thread {
//重写Run方法
public void run(){
//1.获取当前线程的名字
System.out.println(this.getName()+"我是一个线程.");
}
public static void main(String[] args) {
Java多线程学习幸运飞艇采集器修复,需要请搜索【大神源码论坛】dsluntan.com 客服企娥3393756370 V信17061863513,
MyThread mt = new MyThread();
mt.start();
//2.Thread.currentThread() 获取当前线程
System.out.println( Thread.currentThread().getName());
}
}
运行结果
package javastudy01;
class MyThread extends Thread {
public void run(){
//设置线程名方法1
this.setName("胡博士");
System.out.println(this.getName()+":我是一个线程.");
}
public static void main(String[] args) {
MyThread mt = new MyThread();
//设置名字方法2
mt.setName("clare");
mt.start();
}
}
原文地址:http://blog.51cto.com/13970100/2175191
时间: 2024-10-03 19:31:18