上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页
摘要: 上面只是做到读取并写入另一个文件,并没有进行排序 下面是排序的方法 也可以把字节流直接排序了,比较精简 阅读全文
posted @ 2018-01-20 22:23 Advancing-Swift 阅读(3414) 评论(0) 推荐(0) 编辑
摘要: package com.swift; public class Bank_Customer_Test { public static void main(String[] args) { /* * 两个客户往一个银行存钱,每人存三十次一次存一百。 模拟银行存钱功能,时时银行现金数。 */ Customer custo... 阅读全文
posted @ 2018-01-20 20:58 Advancing-Swift 阅读(866) 评论(0) 推荐(0) 编辑
摘要: 不颠倒key和value的位置,用list集合api排序的方法 TreeMap根据key的Comparator对象排序方法 阅读全文
posted @ 2018-01-20 18:51 Advancing-Swift 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 对人进行按年龄排序,升序,如果年龄相同按名字字母拼音升序 阅读全文
posted @ 2018-01-20 15:35 Advancing-Swift 阅读(355) 评论(0) 推荐(0) 编辑
摘要: package com.swift; import java.util.*; import java.lang.reflect.*; public class ReflectDemo { public static void main(String[] args) throws Exception { ArrayList list = new ArrayList()... 阅读全文
posted @ 2018-01-19 23:18 Advancing-Swift 阅读(1258) 评论(0) 推荐(0) 编辑
摘要: 同步代码块的锁也可以用对象,如LockA.locka locka对象为静态 公共 阅读全文
posted @ 2018-01-19 18:21 Advancing-Swift 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 上面是指定哪个文件进行复制 下边是搜索出所有的以.java结尾的文件复制到另一个文件夹并改名 需要用到下边的两种列表 list()方法是返回某个目录下的所有文件和目录的文件名,返回的是String数组 listFiles()方法是返回某个目录下所有文件和目录的绝对路径,返回的是File数组 阅读全文
posted @ 2018-01-18 22:47 Advancing-Swift 阅读(552) 评论(1) 推荐(1) 编辑
摘要: package com.swift; public class Baby_Baomu_ProxyFactory_Test { public static void main(String[] args) { /* * 有一个Baby类,有Cry行为,Baby可以配一个保姆, * 但是作为保姆,必须遵守保姆协议:能够处理Baby类Cr... 阅读全文
posted @ 2018-01-17 10:40 Advancing-Swift 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 正则 阅读全文
posted @ 2018-01-16 21:02 Advancing-Swift 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 也可以放到StringBuffer中用reverse方法 阅读全文
posted @ 2018-01-16 20:18 Advancing-Swift 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页