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

多线程

时间:2015-03-01 22:27:01      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:private   public   多线程   title   接口   

Runnable接口实现多线程

class MyThreadimplements Runnable{

         private String title;

         public MyThread(String title){

                   this.title = title;

         }

         @Override

         public void run(){

                   for(int i = 1; i <=50;i++){

                            System.out.println(title+"-----"+i);

                   }                

         }

}

 

public classTestDemo {

         public static void main(String[] args){

                   MyThread mt1 = newMyThread("线程A");

                   MyThread mt2 = newMyThread("线程B");

                   MyThread mt3 = newMyThread("线程C");

                  

                   new Thread(mt1).start();

                   new Thread(mt2).start();

                   new Thread(mt3).start();

         }

}

注:使用Runnable接口可以更加方便的表示出数据共享的概念。

多线程

标签:private   public   多线程   title   接口   

原文地址:http://9882931.blog.51cto.com/9872931/1616325

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