我使用下面的代碼:
public boolean initialSetupDone;
public Currency defaultCurrency;
public String userId;
final String kProfileSetupDoneKey = "kProfileSetupDone";
final String kDefaultCurrencyKey = "kDefaultCurrency";
final String kUserIdKey = "kUserIdKey";
當其他類型的變量作為值時,String 類型的變量作為主鍵。
那麼我如何把這些值在 HashMap 中存儲。我使用過 Dictionary,但是不能找到更好的方法來實現,如何存儲?
使用下面的方法:
Map<String, Object> map = new HashMap<String, Object>();
map.put(kProfileSetupDoneKey , initialSetupDone);
// etc...