摘要:
直奔主题, Single Thread Execution也称作Critical Section(临界区),范例如下:public class SingleThreadGate { public static void main(String[] args) { System.out.println("ctrl + c to exit."); Gate gate = new Gate(); new UserThread(gate, "Alice", "Alaska").start(); new UserThread(gate, &qu 阅读全文
posted @ 2013-09-07 15:18
高天乐
阅读(1202)
评论(0)
推荐(0)