首页 | 联系我们 | 叶凡网络官方QQ群:323842844
游客,欢迎您! 请登录 免费注册 忘记密码
您所在的位置:首页 > 开发语言 > Java开发 > 正文

java线程---至少也有一个线程

作者:cocomyyz 来源: 日期:2013-9-11 23:42:19 人气:0 加入收藏 评论:0 标签:java

/**
* 至少也有一个线程
*
* @author brj
*
*/
public class ThreadDemo {

/**
* @param args
*/
public static void main(String[] args) {
  Thread thread = Thread.currentThread();
  System.out.println("Current Thread: " + thread.getName());
  thread.setName("TheMainThread");
  System.out.println("After Changed");
  System.out.println("Current Thread: " + thread.getName());
}
}


本文网址:http://www.mingyangnet.com/html/java/218.html
读完这篇文章后,您心情如何?
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
  • 0
更多>>网友评论
发表评论
编辑推荐
  • 没有资料