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.
キーの文字列と値のセット(整数を含む)を持つマップがあります
私のキーがこの「リンゴ」、「バナナ」、「オレンジ」などのように見えるとしましょう。
ユーザーがテキストを入力し、それを String 変数として保存します。マップで同一のキーを検索するにはどうすればよいですか? ユーザーが「apple」と入力した場合、その文字列をメソッドに渡して、メソッドに「apple」キーのマップを検索させ、それに関連付けられた整数のセット (値) を返すにはどうすればよいでしょうか?
ありがとう
getメソッドを使用する
Set<Integer> values = map.get("apple");