当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:14:00  来源:本站整理

[JAVA100例]061、实现Runnable[Java编程]

赞助商链接



  本文“[JAVA100例]061、实现Runnable[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

/**
* <p>Title: 实现Runnable接口,得到线程.</p>
* <p>Description: 通过实现Runnable接口来得到自己的线程(t2).</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Filename: twothread.java</p>
* @version 1.0
*/
public class twothread implements Runnable {
/**
*<br>办法阐明:构造器.实际线程,并启动这个线程.
*<br>输入参数:
*<br>返回范例:
*/
twothread() {
  //获得当前的线程
  Thread t1 =Thread.currentThread();
  t1.setName("The first main thread");
  System.out.println("The running thread:" + t1);
  //通过将本类(Runnable接口)和名称构造一个线程
  Thread t2 = new Thread(this,"the second thread");
  System.out.println("creat another thread");
  //启动线程
  t2.start();
  try {
   System.out.println("first thread will sleep");
   Thread.sleep(3000);
  }catch (InterruptedException e) {
   System.out.println("first thread has wrong");
  }
  System.out.println("first thread exit");
}
/**
*<br>办法阐明:线程主体.实现run办法.
*<br>输入参数:
*<br>返回范例:
*/
public void run() {
  try {
   for (int i=0;i<5;i++) {
    System.out.println("Sleep time for thread 2:"+i);
    Thread.sleep(1000);
   }
 } catch (InterruptedException e) {
  System.out.println("thread has wrong");
 }
 System.out.println("second thread exit");
}
/**
*<br>办法阐明:主办法
*<br>输入参数:
*<br>返回范例:
*/
public static void main(String args[]) {
  new twothread();
}
}


  以上是“[JAVA100例]061、实现Runnable[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 利用Javascript实现网页水印(非图片水印)
  • Java开辟环境的搭建
  • Ubuntu java安装与配置
  • 办理Ubuntu 10.04 Firefox3.6 Java浏览器插件不工作的问
  • Ubuntu重装后Java环境的设置
  • Sun Java进入Ubuntu 10.10软件中央
  • Ubuntu 10.10配置Java开辟环境
  • 在Ubuntu 10.10中配置Java环境变量的办法
  • Ubuntu下Java环境的搭建
  • Ubuntu 10.04 下安装 Java, JRE
  • Ubuntu 10.04下的搭建SUN JAVA开辟环境
  • Ubuntu 12.04安装java7
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .