我的任務是製作一個關於花店的節目。我必須製作一個PriceList,這是一個單身人士。我還有下面給出的測試功能主:如何在單例類中實現Map?
public static void main(String[] args) {
PriceList pl = PriceList.getInstance();
pl.put("rose", 10.0);
pl.put("lilac", 12.0);
pl.put("peony", 8.0);
尋找這些pl.puts(),我決定實現類價格表地圖界面,但我不知道究竟該怎麼做,當我只有這個類的一個對象,它必須是一個Map。我已經寫了很多,不知道下一步該怎麼做:
public class PriceList <String, Double> implements Map <String, Double> {
private static PriceList instance = null;
protected PriceList() {}
public static PriceList getInstance() {
if (instance == null)
instance = new PriceList();
return instance;
}
public void put(String string, double d) {
// TODO Auto-generated method stub
}}
在此先感謝您的幫助!
聽起來像是功課...什麼是正是這個問題?你有沒有測試過它? – TungstenX
是的,這是一個家庭作業,但它比這更大。我有一個測試課FloristsTest,我不能改變,我必須實施必要的課程才能使其工作。我還沒有測試過 – yeti
人們並不熱衷於幫助這裏的作業 - 這是給你研究,但除此之外,BrunoDM給了一個很好的答案。 – TungstenX