摘要: 引用:http://blog.sina.com.cn/s/blog_6290ddad01010zln.html打开 应用程序(command+shift+A)-实用工具-终端open . 直接打开Macintosh系统目录其他口令(与linux一样)ls 显示当前目录内容cd 目录名 进入某一目录cd .. 退回上一个目录进入到某一目录后再open . 可以用finder打开相应目录为方便以后使用可以拖到左边的收藏栏方便以后访问路径 阅读全文
posted @ 2012-03-01 22:45 镇水古月 阅读(825) 评论(0) 推荐(0) 编辑
摘要: 引用:http://alex09.iteye.com/blog/539545 HashMap 和 HashSet 是 Java Collection Framework 的两个重要成员,其中 HashMap 是 Map 接口的常用实现类,HashSet 是 Set 接口的常用实现类。虽然 HashMap 和 HashSet 实现的接口规范不同,但它们底层的 Hash 存储机制完全一样,甚至 HashSet 本身就采用 HashMap 来实现的。通过 HashMap、HashSet 的源代码分析其 Hash 存储机制实际上,HashSet 和 HashMap 之间有很多相似之处,对于 HashS 阅读全文
posted @ 2012-03-01 09:29 镇水古月 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 引用:http://apps.hi.baidu.com/share/detail/50038621一。Java中遍历HashMap的两种方式第一种: HashMap<String,String> keySetMap = new HashMap<String,String>(); Iterator<String> keySetIterator = keySetMap.keySet().iterator(); while (keySetIterator.hasNext()) { System.out.println(keySetMap.get(keySetIte 阅读全文
posted @ 2012-03-01 09:29 镇水古月 阅读(274) 评论(0) 推荐(0) 编辑