Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのようなストレージアレイの方法を探しています:
array['name'] or array.add('name','value').
arrayList はそのようには機能しません。そのような値を保存する最良の方法は何ですか?
を使用しMapます。AHashMapは適切な選択です。
Map
HashMap
Map<String, String> map = new HashMap<String, String>(); // to add name/value pairs - like your array.add('name','value') map.put("name", "value"); // to retrieve values - like your array['name'] map.get("name");