当前页面:
在线文档首页 >
Hibernate reference 3.2.0 ga 正式版中文参考手册
4.2. 实现继承(Inheritance) - Hibernate reference 3.2.0 ga 正式版中文参考手册
子类也必须遵守第一条和第二条规则。它从超类Cat
继承了标识属性。
package eg;
public class DomesticCat extends Cat {
private String name;
public String getName() {
return name;
}
protected void setName(String name) {
this.name=name;
}
}