2013年11月2日
摘要: synchronized的一个简单例子public class TextThread { /** * @param args */ public static void main(String[] args) { // TODO 自动生成方法存根 TxtThread tt = new TxtThread(); new Thread(tt).start(); new Thread(tt).start(); new Thread(tt).start(); new Thread(tt).start(); }} class TxtThread implements Runnable {... 阅读全文
posted @ 2013-11-02 06:06 @ 小浩 阅读(298) 评论(0) 推荐(0) 编辑