Questions tagged «map»

17
HashMap, LinkedHashMap සහ TreeMap අතර වෙනස
අතර ඇති වෙනස කුමක්ද HashMap, LinkedHashMapහා TreeMapජාවා? මම සියලු තුනක් ලෙස ප්රතිදානය අතර යම් වෙනසක් දකින්න තිබෙනවා නැහැ keySetහා values. HashtableS යනු කුමක්ද? Map m1 = new HashMap(); m1.put("map", "HashMap"); m1.put("schildt", "java2"); m1.put("mathew", "Hyden"); m1.put("schildt", "java2s"); print(m1.keySet()); print(m1.values()); SortedMap sm = new TreeMap(); sm.put("map", "TreeMap"); sm.put("schildt", "java2"); sm.put("mathew", "Hyden"); sm.put("schildt", …
971 java  map 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.