标签:com rgs 作用 print void 结果 str getname ring
getId()方法的作用是取得线程的唯一标识。
1 package com.cky.test; 2 3 /** 4 * Created by chenkaiyang on 2017/12/2. 5 */ 6 public class Test { 7 public static void main(String[] args){ 8 Thread thread = Thread.currentThread(); 9 System.out.println(thread.getName() +"...."+thread.getId()); 10 } 11 }
结果分析当前执行代码的线程名称为main,线程id值为1
标签:com rgs 作用 print void 结果 str getname ring
原文地址:http://www.cnblogs.com/edison20161121/p/7954675.html