我做了个界面,上面有四个进度条,还有一个button,我想点击button后,四个进度条同时跑.goButton.addSelectionListener(new SelectionAdapter() {
    public void widgetSelected(final SelectionEvent e){
  Thread t1=new Thread(){
             public void run(){
       for(int i=0;i<11;i++)
                 {            try                     {
  sleep(500);   }
 catch(Exception e)  {}                      progressBar.setSelection(i*10); }; Display.getCurrent().asyncExec(t1);                         ...........                       progressBar就是四个进度条中的一个,像这样我一共创建了四个.结果
               他们还是跑完了一个,再接着另一个跑,他们怎么就不一起跑呢?              谢谢了