摘要: package workhome; import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class ListDemo { public static void main(String 阅读全文
posted @ 2019-06-08 22:28 殇之弑梦 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package workhome; public class BuilderDemo { public static void main(String[] args) { //builder模式 //方法链编程 Person1 p = new Person1() .setName("tom") .s 阅读全文
posted @ 2019-06-08 17:44 殇之弑梦 阅读(309) 评论(0) 推荐(0) 编辑
摘要: package workhome; public class ThreadPriority { public static void main(String[] args) { MyThread a= new MyThread("S"); System.out.println(a.getPriori 阅读全文
posted @ 2019-06-08 14:24 殇之弑梦 阅读(365) 评论(0) 推荐(0) 编辑