實(shí)體的繼承

2018-06-02 10:14 更新

在項(xiàng)目開發(fā)時(shí),如果多個(gè)實(shí)體中都有些共同的屬性時(shí),可以把共同的屬性提取放在一個(gè)共同的父類實(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í)體中屬性和使用了


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號