Map dan HashMap Pada JAVA

Map secara hirarki hampir mirip dengan database, tapi Map terdiri dari key & value dimana untuk mendapatkan value kita harus get data by key. Perhatikan contoh kodingan dibawah.



Map map = new HashMap();

//map.put(key, value);
map.put(
"nama", "Coutinho");
map.put(
"negara", "Brazil");

System.out.println(map);
System.out.println(map.get(
"nama"));

Demikian contoh penggunaan dari Map pada JAVA, semoga bermanfaat.
GBU.

Related Posts



Share on Google Plus

About Mr.J

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comments:

Posting Komentar