查看某方法由哪个线程调用
程序员文章站
2022-04-17 18:33:02
...
public class ab implements Runnable{
public void run(){
System.out.println("当前是谁调用run方法:" + Thread.currentThread().getName());
}
public static void main(String[] args){
Thread thread = new Thread(new ab());
thread.run();
thread.start();
}
}
上一篇: shell中获取hdfs文件路径参数
下一篇: uva 11300
推荐阅读