繁体   English   中英

使用WindowBuilder SWT时Java中有多个线程

[英]Multiple threads in Java while using WindowBuilder SWT

有人可以解释一下为什么我尝试运行2个或更多线程时此程序中的Window冻结吗?

我希望能够在两个线程都运行时单击“ Hello”按钮。 这是我的简单项目。 任务类仅打印出单词“ Testing”。

public class Task extends Thread {
public static boolean keepRun = true;

public void run(){
    while(keepRun == true){
    System.out.println("Testing...");

    try {
        Thread.sleep(1000);
    }catch(InterruptedException e){}};
}
}

当在控制台中键入stop时,关闭类将停止线程。

import java.util.Scanner;
public class Closing implements Runnable{
Scanner s = new Scanner(System.in);
public void run() {

    while (s.next().equals("stop")){
          System.out.println("Threads down");

          Task.keepRun =false;

    try {
        Thread.sleep(5000);
    }catch(InterruptedException e){} 
    };

}
}

import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionAdapter;
import org.eclipse.swt.events.SelectionEvent;

这也是main所在的Window类。

public class Window {

protected Shell shell;

/**
 * Launch the application.
 * @param args
 */
public static void main(String[] args) {
    try {
        Window window = new Window();
        window.open();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

/**
 * Open the window.
 */
public void open() {
    Display display = Display.getDefault();
    createContents();
    shell.open();
    shell.layout();
    while (!shell.isDisposed()) {
        if (!display.readAndDispatch()) {
            display.sleep();
        }
    }
}

/**
 * Create contents of the window.
 */
protected void createContents() {
    shell = new Shell();
    shell.setSize(192, 208);
    shell.setText("SWT Application");

    Button btnRun = new Button(shell, SWT.NONE);
    btnRun.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent e) {
            Task newTask = new Task();
            Closing closing = new Closing();
            newTask.start();
            closing.run();
        }
    });
    btnRun.setBounds(50, 32, 75, 25);
    btnRun.setText("Run");

    Button btnHello = new Button(shell, SWT.NONE);
    btnHello.addSelectionListener(new SelectionAdapter() {
        @Override
        public void widgetSelected(SelectionEvent e) {
            System.out.println("Hello");
        }
    });
    btnHello.setBounds(50, 81, 75, 25);
    btnHello.setText("Hello");

}
}

改写这个:

Closing closing = new Closing();
newTask.start();
closing.run();

对此:

Closing closing = new Closing();
newTask.start();
new Thread(closing).start();

看下面的代码:

public class Closing implements Runnable{
    Scanner s = new Scanner(System.in);
    public void run() {

        while (s.next().equals("stop")){
            System.out.println("Threads down");

            Task.keepRun =false;

            try {
                Thread.sleep(5000);
            }catch(InterruptedException e){} 
        };
    }
}

如果您只是调用run(); Thread.sleep(5000); 另一方面,当您创建一个新线程时,睡眠将受到影响,而这个线程称为运行。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM