首页 > 编程语言 > 详细

java 线程

时间:2014-07-23 20:40:35      阅读:357      评论:0      收藏:0      [点我收藏+]

java 线程创建code如下:

        public  class My_runnable{

        public static void main(String[] args){

              Thread t = new Thread(new Runnable(), "aaa"); //aaa is the thread name

                                                     t.start();    //会调用Runnable中的run 方法,该方法在My_runnable中实现

            int i = 0;

            for(;;){  

              Date date = new Date();

              String str = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS").format(date);

              System.out.println(str + ":main thread: " + i);

              i++;

              if(i == 5)

                 break;

            }

          }

    @Override

                        public void run(){

                      int i = 0;

        while(true){

                 Date date = new Date();

              String str = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS").format(date);

              System.out.println(str + ":main thread: " + i);

              i++;

              if(i == 5)

                 break;

            }

        }

}

java 线程,布布扣,bubuko.com

java 线程

原文:http://www.cnblogs.com/run1119/p/3863769.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!