摘要:
Object类 hashCode()方法 public int hashCode() 返回该对象的哈希码值,默认情况下,该方法会根据对象的地址来计算 不同对象的,hashCode()一般来说不会相同,但是同一个对象的hashCode()值肯定相同 实例 输出结果 getClass() public 阅读全文
摘要:
完整的select语句 执行顺序为: from 表名 where ... group by ... select ditinct having ... order by ... limit start,count 查询语句 消除重复语句 条件 比较运算符 等于= 大于 大于等于 = 小于 逻辑运算符 阅读全文