Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8774109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:28:36+00:00 2026-06-13T18:28:36+00:00

In the below key/value list val3 is repeating for different keys. Which map suits

  • 0

In the below key/value list “val3” is repeating for different keys. Which map suits best for such type of list.

I want “val3” should be stored only once with multiple keys pointing to it.

key1—->val1
key2—->val3
key3—->val3
key5—->val5
key6—->val3
key7—->val6
key8—->val3
key9—->val3

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T18:28:37+00:00Added an answer on June 13, 2026 at 6:28 pm

    Any Map implementation will do. Every Java collection only holds references, not actual objects, so if you put the same object several times in a map, all the values will point to the same object. In other words changes made to val3 through key2 lookup will be reflected when looking up by any other key pointing to val3.

    Consider simplified example:

    VeryLarge v = new VeryLarge();
    Map<Integer, VeryLarge> map = new HashMap<>();
    map.put(1, v);
    map.put(2, v);
    map.put(3, v);
    

    Single VeryLarge instance is referenced by all 1, 2 and 3 keys.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Map of Lists with key = GROUP and value = List
I have map with key and value and my goal is to get list
The code below takes an array value, if it's key exist it should echo
In the example below, I have a model Proof which contains a foreign key
I have a data dictionary which is as follows: Key Value 1 ron k
I have 2 arrays that I want to merge based on a key's value
Possible Duplicate: Is there a LINQ way to go from a list of key/value
how can I get a ArrayList or List of key and value of the
A bunch of key/value pairs, from an object that may have duplicate keys, need
How to implement code for below xml file <root> <keys> <key> <Question>Is the color

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.