首先让我们来复习下一什么是多线程?

  多线程是这样一种机制,它允许在程序中并发执行多个指令流,每个指令流都称为一个线程,彼此间互相独立。

  线程又称为轻量级进程,它和进程一样拥有独立的执行控制,由操作系统负责调度,区别在于线程没有独立的存储空间,而是和所属进程中的其它线程共享一个存储空间,这使得线程间的通信远较进程简单。

  多个线程的执行是并发的,也就是在逻辑上“同时”,而不管是否是物理上的“同时”。如果系统只有一个CPU,那么真正的“同时”是不可能的,但是由于CPU的速度非常快,用户感觉不到其中的区别,因此我们也不用关心它,只需要设想各个线程是同时执行即可。

  多线程和传统的单线程在程序设计上最大的区别在于,由于各个线程的控制流彼此独立,使得各个线程之间的代码是乱序执行的。

  经过以上介绍,想必大家都已经回忆起当时写多线程程序的痛苦。那么再让我们回忆一下,Java中是如何实现多线程的吧。

  作为一个完全面向对象的语言,Java提供了类 java.lang.Thread 来方便多线程编程,这个类提供了大量的方法来方便我们控制自己的各个线程。让我们来看一看 Thread 类。Thread 类最重要的方法是 run() ,它为Thread 类的方法 start() 所调用,提供我们的线程所要执行的代码。为了指定我们自己的代码,只需要覆盖它!

 1 public   class  MyThread  extends  Thread  {
 2          private   int  index;
 3          
 4          public  MyThread( int  i)  {
 5                  this .index  =  i;
 6         }

 7         
 8          public   void  run()  {
 9                  while  ( this .index  <   6 {
10                         System.out.println( " index =  "   +   this .index);
11
12                          this .index ++ ;
13                 }

14         }

15         
16          public   static   void  main(String[] args)  {
17                  for  ( int  i  =   0 ; i  <   10 ; i ++ {
18                          new  MyThread(i).start();
19                 }

20         }

21 }

22

  当然,除了以上这种方法,Java还提供了Runnable 接口。该接口只有一个方法 run(),我们声明自己的类实现 Runnable 接口并提供这一方法,将线程代码写入其中,就完成了这一部分的任务。但是 Runnable 接口并没有任何对线程的支持,我们还必须创建 Thread 类的实例,这一点通过 Thread 类的构造函数来实现。

 1 public   class  MyThread  implements  Runnable  {
 2          private   int  index;
 3          
 4          public  MyThread( int  i)  {
 5                  this .index  =  i;
 6         }

 7         
 8          public   void  run()  {
 9                  while  ( this .index  <   6 {
10                         System.out.println( " index =  "   +   this .index);
11
12                          this .index ++ ;
13                 }

14         }

15         
16          public   static   void  main(String[] args)  {
17                  for  ( int  i  =   0 ; i  <   10 ; i ++ {
18                          new  Thread( new  MyThread(i)).start();
19                 }

20         }

21 }

22
23


  我们已经习惯了以上两种线程的方法,但是,Eclipse的swt却不相同。如果按照我们以上的方法,当访问swt的某一组件时,系统会抛出异常:org.eclipse.swt.SWTException: Invalid thread access 那么,在swt中,如保使用线程呢?

 1 public   class  MyThread  extends  Thread  {
 2      private  Display display;
 3      private  Label miniLabel;
 4     
 5      private   static   int  index  =   0
 6
 7      public  MyThread(Display display, Label label)  {
 8          this .display  =  display;
 9          this .miniLabel  =  label;
10     }

11     
12      public   void  run()  {
13          try   {
14              while  ( true {
15                 Thread.sleep( 1000 );
16                  if  ( ! this .display.isDisposed())  {
17                     Runnable runnable  =   new  Runnable()  {
18                          public   void  run()  {
19                              //  your source
20                         }

21                     }
;
22                     
23                     display.asyncExec(runnable);  //  关键在这一句上
24                 }

25             }

26         }
  catch  (Exception ex)  {}
27     }

28 }

swt的display有两种方式实现线程:asyncExec是线程异步的,syncExec是线程同步的。