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.
Map型変数があります
Map
a = new HashMap<String, ArrayList<String>>();
私の質問は:
たとえば、今私はString b, String c、メソッドを使用put()してそれをマップに配置する方法を持っていますか?式の書き方がわかりません。
String b, String c
put()
たとえばString d、キーを入力するだけで、値セットに文字列を追加しない場合、どのように記述しますか?
String d
ありがとうございました!
あなたはこのようなことを試すことができます。
Map<String, List<Integer>> a = new HashMap<String, List<Integer>>(); Integer i = 100; //say String b = "str"; //say List<Integer> list = new ArrayList<Integer>(); list.add(i); a.put(b,list);