1.6getId()方法

getId()方法的作用是获取线程的唯一标识。

测试执行类:

public class Main {
    public static void main(String[] args) {
        Thread t = Thread.currentThread();
        System.out.println(t.getName() + "---" + t.getId());
    }
}

结果:

 

posted @ 2017-12-01 13:36  萌新啊萌新是我  阅读(511)  评论(0编辑  收藏  举报