摘要:
空值跟null的区别。mysql官方: “NULL columns require additional space in the row to record whether their values are NULL. For MyISAM tables, each NULL column tak 阅读全文
摘要:
JPA是基于Java持久化的解决方案,主要是为了解决ORM框架的差异,它的出现在某种程度上能够解决目前ORM框架之间不能够兼容的问题,对开发人员来说,能够更好的在JPA规范下进行系统开发。 JPA全称为Java Persistence API ,Java持久化API是Sun公司在Java EE 5规 阅读全文
摘要:
一、概述Object类是所有Java类的祖先。每个类都使用 Object 作为超类。所有对象(包括数组)都实现这个类的方法。 参考英文:* Class {@code Object} is the root of the class hierarchy.* Every class has {@code 阅读全文