码迷,mamicode.com
首页 > 编程语言 > 详细

多线程Thread(获取线程名字)

时间:2018-07-07 00:27:08      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:code   获取   system   tar   int   oid   style   main   start   

package com.day18.Thread;

public class ThreadFour {

    public static void main(String[] args) {
        new Thread("Lakers") {
            public void run() {
                System.out.println(this.getName()+"  Kobe");
            }
        }.start();
        
        new Thread("Celtics") {
            public void run() {
                System.out.println(this.getName()+"  KG");
            }
        }.start();
    }

}

 

多线程Thread(获取线程名字)

标签:code   获取   system   tar   int   oid   style   main   start   

原文地址:https://www.cnblogs.com/zhujialei123/p/9275843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!