編譯我的代碼時出現此錯誤。請幫我看看這個 -put(java.lang.String,java.lang.Inte ger)in java.util.Map <java.lang.String,java.lang.Integer>不能應用於(java.lang.String,java.lang.Object)。字符串)
代碼
mapConnectionProperties = new HashMap<String, Integer>();
mapConnectionProperties.put(mobileSeriesMappingDTO
.getExternalIP(), mobileSeriesMappingDTO.getExternalPort());
哪些錯誤? getExternalIP()和getExternalPort()返回什麼? – MABVT 2014-10-30 09:56:02
閱讀錯誤:您試圖將兩個字符串傳遞給接受字符串和整數作爲參數的方法 – BackSlash 2014-10-30 09:56:35
看起來像一個非常明確的錯誤消息。 – khelwood 2014-10-30 09:58:30