首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

JAVA多线程设计形式六 Read-Write Pattern

2012-09-10 
JAVA多线程设计模式六 Read-Write Pattern到目前为止非常有用的一个模式。????public class Main {public s

JAVA多线程设计模式六 Read-Write Pattern

到目前为止非常有用的一个模式。

?

?

?

?

public class Main {    public static void main(String[] args) {        Data data = new Data(10);        new ReaderThread(data).start();        new ReaderThread(data).start();        new ReaderThread(data).start();        new ReaderThread(data).start();        new ReaderThread(data).start();        new ReaderThread(data).start();        new WriterThread(data, "ABCDEFGHIJKLMNOPQRSTUVWXYZ").start();        new WriterThread(data, "abcdefghijklmnopqrstuvwxyz").start();    }}

?

?

?

自己实现的逻辑锁定。

热点排行