Java线程同步
摘要:
package a.thread; public class A { private static int x = 0; public void run() { // 同步代码块 synchronized (this) { for (int i = 0; i < 10; i++) { System. 阅读全文
posted @ 2016-08-02 10:36 梦幻之城,理想王国 阅读(129) 评论(0) 推荐(0) 编辑