摘要: 1 /** 2 * 守护线程daemon['diːmən] 3 * @author Administrator 4 * 5 */ 6 public class DaemonDemo { 7 public static void main(String[] args) { 8 ... 阅读全文
posted @ 2014-05-14 21:37 soul390 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 线程的暂停、恢复和停止 3 * @author Administrator 4 * 5 */ 6 public class ThreadControlDemo { 7 public static void main(String[] args) { 8 ... 阅读全文
posted @ 2014-05-14 17:01 soul390 阅读(146) 评论(0) 推荐(0) 编辑
摘要: wait()与notify(): 1 public class ThreadComDemo { 2 public static void main(String[] args) { 3 try { 4 SyncOb sObj= new SyncOb()... 阅读全文
posted @ 2014-05-14 15:33 soul390 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 通过制定synchronized限定符,可以同步用于对象的一个或多个方法。当调用同步的方法时,对象会被加锁,直到方法返回。 3 * @author Burke 4 * 5 */ 6 public class SyncDemo { 7 public static ... 阅读全文
posted @ 2014-05-14 11:00 soul390 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.Comparator; 2 import java.util.PriorityQueue; 3 4 /** 5 * 对集合使用Comparator,不改变对象的自然顺序 6 * @author Administrator 7 * 8 */ 9 pub... 阅读全文
posted @ 2014-05-14 09:03 soul390 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.TreeSet; 2 3 4 /** 5 * PriorityQueue, TreeSet是排序集合,存储的对象必须实现Comparable接口。 6 * 原因是: Comparable 接口定义了compareTo()方法,它判断类的对象的“自然顺序... 阅读全文
posted @ 2014-05-14 08:54 soul390 阅读(387) 评论(0) 推荐(0) 编辑