爱心技术专栏专题

如何創建線程

摘录:java基础 来源:java基础 加入时间:2007年04月11日
摘要:
如何創建線程

Thread 类定义了多种方法可以被派生类重载,,必须重载run()方法
1.实现Runnable接口
   如果你不需要重载Tread的其它方法时,最好只实现Runnable接口
//  Create Thread method one is implements Runnab…

如何創建線程

站点:爱心种子小博士 关键字:如何創建線程

如何創建線程

Thread 类定义了多种方法可以被派生类重载,,必须重载run()方法
1.实现Runnable接口
   如果你不需要重载Tread的其它方法时,最好只实现Runnable接口
//  Create Thread method one is implements Runnable
class NewThread implements Runnable{
 Thread t;
 NewThread(){
  t = new Thread(this,"DemoThread");
  System.out.println("child thread : "+t);
  t.start();
 }
 public void run(){
  try{
   for (int n =5; n>0 ; n--){
    System.out.println("Child thread "+n);
    Thread.sleep(500);   // Child 500
   }   
  }catch(InterruptedException e){
   System.out.println("Child thread interrupted ");
  }
  System.out.println("Child thread exiting ");
 }
}

2 .可以继承Thread类
    如果类仅在他们被加强或修改时应该被扩展
//  Create Thread the other method  is extends Thread
class NewThread2 extends Thread{
 
 NewThread2(){
  super("Demo Thread");
  System.out.println("child thread : "+this);
  start();
 }
 public void run(){
  try{
   for (int n =5; n>0 ; n--){
    System.out.println("Child thread "+n);
    Thread.sleep(500);   // Child 500
   }   
  }catch(InterruptedException e){
   System.out.println("Child thread interrupted ");
  }
  System.out.println("Child thread exiting ");
 }
}

同步
1.        当两个或两个线程需要共享资源,他们需要某种方法来确定资源在某一刻仅被一个线程占用,叫同步(synchronization)
 2.        同步关键时管程(也叫信号量semaphone).管程是一个互斥占锁定的对象,或称互斥体(mutex)


转载:转载请保留本信息,本文来自http://www.51dibs.com/lp07/la/a8/l_a_ce15392e9d445b38.html