多线程Thread(获取线程名字)
Posted zhujialei123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程Thread(获取线程名字)相关的知识,希望对你有一定的参考价值。
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(获取线程名字)的主要内容,如果未能解决你的问题,请参考以下文章