W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
在項目開發(fā)時,如果多個實(shí)體中都有些共同的屬性時,可以把共同的屬性提取放在一個共同的父類實(shí)體中,其他實(shí)體只需繼承共同實(shí)體,這樣就減少了共同實(shí)體中屬性的重復(fù)編寫工作。這里把上面的實(shí)體Product中的id屬性提取放到共同實(shí)體Common中去,修改如下
public class Common {
private String id="";
public String getId()
{
if ((id==null)||("".equals(id))||("null".equalsIgnoreCase(id))) {
id=UUID.randomUUID().toString();
}
return id;
}
public void setId(String id) {
this.id = id;
}
}
Product實(shí)體如下
public class Product extends Common
{
private String name="";
private float price=0;
private String madeIn="";
//getters/setters
}
這樣Product實(shí)體就繼承了Common實(shí)體中屬性和使用了
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: