上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 57 下一页

2012年11月12日

java hashcode写法

摘要: public class Name { private String firstName; private String lastName; public Name(String firstName, String lastName) { this.firstName = firstName; this.lastName = lastName; } public int hashCode(){ return this.firstName.hashCode(); } public boolean equa... 阅读全文

posted @ 2012-11-12 09:42 雨渐渐 阅读(282) 评论(0) 推荐(0) 编辑

2012年11月7日

记录

摘要: http://select.yeeyan.org/view/94114/329073 阅读全文

posted @ 2012-11-07 16:36 雨渐渐 阅读(97) 评论(0) 推荐(0) 编辑

2012年11月5日

eclipse 生成带注释的jar包

摘要: http://lichsword.net/blog/archives/350 阅读全文

posted @ 2012-11-05 10:50 雨渐渐 阅读(254) 评论(0) 推荐(0) 编辑

2012年11月2日

nutch传参

摘要: http://peigang.iteye.com/blog/1547174 阅读全文

posted @ 2012-11-02 10:27 雨渐渐 阅读(96) 评论(0) 推荐(0) 编辑

2012年10月27日

vs 在线引用

摘要: http://www.oschina.net/question/54100_35518 阅读全文

posted @ 2012-10-27 12:23 雨渐渐 阅读(113) 评论(0) 推荐(0) 编辑

2012年10月22日

新的解析html工具类

摘要: http://www.cnblogs.com/hibernate3-example/archive/2012/05/27/2520615.html 阅读全文

posted @ 2012-10-22 15:21 雨渐渐 阅读(107) 评论(0) 推荐(0) 编辑

2012年10月19日

语法树

摘要: 个人感觉有点类似于有限状态机package com.smart.enumcompareto.test;import com.smart.enumcompareto.test.TernarySearchTrie.TSTNode;/** * 语法树匹配到的结果,记录最终节点和最终节点的index * * @author dell * */public class MatchRet { private int index; private TSTNode node; public MatchRet(TSTNode node,int index){ this.i... 阅读全文

posted @ 2012-10-19 09:07 雨渐渐 阅读(230) 评论(0) 推荐(0) 编辑

2012年10月17日

java枚举类型_Ordinal compareTo

摘要: public enum Color { RED, BLUE, BLACK, YELLOW, GREEN}public class Program { //RED, BLUE, BLACK, YELLOW, GREEN public static void main(String[] args) {// testOrdinal(); testCompareTo(); } public static void testCompareTo(){ int dis=Color.GREEN.compareTo(Color.RE... 阅读全文

posted @ 2012-10-17 17:29 雨渐渐 阅读(457) 评论(0) 推荐(0) 编辑

2012年10月16日

守则

摘要: 1,先画图,后写代码,数据结构画图,流程也画图 阅读全文

posted @ 2012-10-16 17:36 雨渐渐 阅读(144) 评论(0) 推荐(0) 编辑

eclipse去掉拼写检查

摘要: Myeclipse菜单 window——General——Editors——Text Editors——Spelling——把右边的Enable spell checking的勾去掉就行了,也就是取消单词的拼写检查。 阅读全文

posted @ 2012-10-16 13:58 雨渐渐 阅读(469) 评论(0) 推荐(0) 编辑

上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 57 下一页

导航