java マルチスレッドch01 SingleThreadedExecution

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java マルチスレッドch01 SingleThreadedExecution相关的知识,希望对你有一定的参考价值。

public class UserThread extends Thread {
    private final Gate gate;
    private final String myname;
    private final String myaddress;
    public UserThread(Gate gate, String myname, String myaddress) {
        this.gate = gate;
        this.myname = myname;
        this.myaddress = myaddress;
    }
    public void run() {
        System.out.println(myname + " BEGIN");
        while (true) {
            gate.pass(myname, myaddress);
        }
    }
}
public class Main {
    public static void main(String[] args) {
        System.out.println("Testing Gate, hit CTRL+C to exit.");
        Gate gate = new Gate();
        new UserThread(gate, "Alice", "Alaska").start();
        new UserThread(gate, "Bobby", "Brazil").start();
        new UserThread(gate, "Chris", "Canada").start();
    }
}
public class Gate {
    private int counter = 0;
    private String name = "Nobody";
    private String address = "Nowhere";
    public synchronized void pass(String name, String address) {
        this.counter++;
        this.name = name;
        this.address = address;
        check();
    }
    public synchronized String toString() {
        return "No." + counter + ": " + name + ", " + address;
    }
    private void check() {
        if (name.charAt(0) != address.charAt(0)) {
            System.out.println("***** BROKEN ***** " + toString());
        }
    }
}

以上是关于java マルチスレッドch01 SingleThreadedExecution的主要内容,如果未能解决你的问题,请参考以下文章

sh マルチスレッド风の处理(击)

csharp [WPF]别スレッドでUIスレッドを立ててそこから窗口を表示

csharp 别スレッドからメインスレッドのコントロールにアクセスするラムダ式

csharp [WPF]别スレッドで别别ン示示示示示示

csharp 【WPF】セカンダリスレッド上で発生した未处理の例外の対处

r マルチプロット