
JAVA技术
文章平均质量分 70
shinepengwei
这个作者很懒,什么都没留下…
展开
-
Everything Is an Object(Thinking In Java读书笔记)
我们操作的是对象/类的引用(reference)。 存储数据data的五个地方:Registers. This is the fastest storage because it exists in a place different from that of other storage: inside the processor. Howeve...原创 2011-04-27 11:08:08 · 122 阅读 · 0 评论 -
Ibaits返回结果集[转]
object别名映射 -> 实体类: resultClass <select id=" selectAll" resultClass="AppLog"> select ID as id, TYPE as type, DESCR as descr from APP_LOG where ID = #id#</select> ...原创 2011-03-07 12:30:15 · 114 阅读 · 0 评论 -
StringUtils的isBlank与isEmply
1. public static boolean isEmpty(String str) 判断某字符串是否为空,为空的标准是 str==null 或 str.length()==0 下面是 StringUtils 判断是否为空的示例: StringUtils.isEmpty(null) = true StringUtils.isEmpty("") = true Str...原创 2011-03-10 16:30:10 · 556 阅读 · 0 评论