키당 여러 값을 사용하여 HashMap 생성
일부 시나리오에서는 HashMap에 동일한 키를 사용하여 여러 값을 저장해야 할 수도 있습니다. . Java의 HashMap은 기본적으로 이를 지원하지 않지만 이 기능을 달성하기 위한 몇 가지 대체 접근 방식이 있습니다.
1. 목록을 값으로 사용하는 지도
한 가지 옵션은 값이 목록인 HashMap을 만드는 것입니다. 이를 통해 여러 값을 단일 키와 연결할 수 있습니다. 예를 들면 다음과 같습니다.
Map<String, List<Person>> peopleByForename = new HashMap<>();
2. 래퍼 클래스
대안은 여러 값을 보유하는 래퍼 클래스를 정의하는 것입니다. 그런 다음 이 래퍼를 HashMap의 값으로 사용할 수 있습니다:
class Wrapper { private Person person1; private Person person2; public Wrapper(Person person1, Person person2) { this.person1 = person1; this.person2 = person2; } // Getter methods } Map<String, Wrapper> peopleByForename = new HashMap<>();
3. 튜플
프로그래밍 언어가 튜플을 지원하는 경우 이를 HashMap의 키나 값으로 활용할 수 있습니다. 예:
Map<String, Tuple2<Person, Person>> peopleByForename = new HashMap<>();
4. 다중 맵
마지막으로, 또 다른 전략은 각 값 유형에 대해 별도의 맵을 사용하는 것입니다.
Map<String, Person> firstPersonByForename = new HashMap<>(); Map<String, Person> secondPersonByForename = new HashMap<>();
예
예제 고려 userId, clientID 및 timeStamp:
옵션 1: 목록을 값으로 사용하는 맵
Map<Integer, List<Pair<String, Long>>> data = new HashMap<>(); data.put(1, Arrays.asList(new Pair<>("client-1", System.currentTimeMillis()))); data.put(1, Arrays.asList(new Pair<>("client-2", System.currentTimeMillis())));
옵션 2: 래퍼 클래스
class Data { private Integer userId; private String clientID; private Long timeStamp; public Data(Integer userId, String clientID, Long timeStamp) { this.userId = userId; this.clientID = clientID; this.timeStamp = timeStamp; } } Map<Integer, Data> data = new HashMap<>(); data.put(1, new Data(1, "client-1", System.currentTimeMillis())); data.put(1, new Data(1, "client-2", System.currentTimeMillis()));
접근 방식 선택은 애플리케이션의 특정 요구 사항과 사용 중인 프로그래밍 언어에 따라 다릅니다.
위 내용은 HashMap에 동일한 키를 사용하여 여러 값을 저장하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!