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

 package com.cky.test;

 /**
* Created by chenkaiyang on 2017/12/2.
*/
public class Test {
public static void main(String[] args){
Thread thread = Thread.currentThread();
System.out.println(thread.getName() +"...."+thread.getId());
}
}

结果分析当前执行代码的线程名称为main,线程id值为1

05-06 02:14