上一页 1 2 3 4 5 6 7 8 ··· 17 下一页
  2019年5月24日
摘要: 一、List有序的、可重复容器,常用实现类3个:ArrayList、LinkList和Vector,常用的ArrayList,他们的底层都是数组。 阅读全文
posted @ 2019-05-24 06:24 zz测试笔记 阅读(4005) 评论(0) 推荐(0) 编辑
  2019年5月23日
摘要: package cn.zxg.collection;import java.util.ArrayList;import java.util.Collection;/** * 测试List操作并集和交集 */public class TestList02 { public static void ma 阅读全文
posted @ 2019-05-23 22:52 zz测试笔记 阅读(376) 评论(0) 推荐(0) 编辑
摘要: package cn.zxg.collection;import java.util.ArrayList;import java.util.Collection;/** * 测试Collection接口中的方法 */public class Testlist { public static void 阅读全文
posted @ 2019-05-23 22:37 zz测试笔记 阅读(200) 评论(0) 推荐(0) 编辑
摘要: package cn.zxg.collection; /** * 测试泛型 */ public class TestGenric { public static void main(String[] args) { MyCollection mc=new MyCollection(); mc.set 阅读全文
posted @ 2019-05-23 22:15 zz测试笔记 阅读(148) 评论(0) 推荐(0) 编辑
摘要: package cn.zxg.Exception;import java.io.FileReader;import java.io.IOException;/** * 使用throws声明异常 */public class Test03 { public static void main(Strin 阅读全文
posted @ 2019-05-23 07:08 zz测试笔记 阅读(302) 评论(0) 推荐(0) 编辑
摘要: package cn.zxg.Exception;import java.io.FileNotFoundException;import java.io.FileReader;import java.io.IOException;/** * try_catch_finally捕获异常 */publi 阅读全文
posted @ 2019-05-23 07:00 zz测试笔记 阅读(308) 评论(0) 推荐(0) 编辑
  2019年5月22日
摘要: package cn.zxg.PackgeUse;/** * 测试枚举的基本使用 */public class TestEnum { public static void main(String[] args) { Season a=Season.AUTUMN; switch (a){ case S 阅读全文
posted @ 2019-05-22 22:55 zz测试笔记 阅读(276) 评论(0) 推荐(0) 编辑
摘要: package cn.zxg.PackgeUse;import java.io.File;/** * 测试打印文件目录树 */public class TestFileTree { public static void main(String[] args) { File f=new File("d 阅读全文
posted @ 2019-05-22 22:47 zz测试笔记 阅读(620) 评论(0) 推荐(0) 编辑
摘要: package cn.zxg.PackgeUse;import java.io.File;import java.util.Date;/** * 测试File类的使用 */public class TestFile { public static void main(String[] args) { 阅读全文
posted @ 2019-05-22 22:32 zz测试笔记 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 一、Math类 阅读全文
posted @ 2019-05-22 22:04 zz测试笔记 阅读(279) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 17 下一页