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 7172135
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:33:19+00:00 2026-05-28T15:33:19+00:00

Does the Map#get method return the value that the key is mapped to or

  • 0

Does the Map#get method return the value that the key is mapped to or does it return a reference to the value?
Code(This is a program I am working on):

    Map<String,Vector<String>> map=new TreeMap<String,Vector<String> >();  
    for(String line:services)
    {
         String[] set=line.split(" ");
         Vector<String> t=new Vector<String>();
         String BioService=set[0];             
         int i=1;              
         while(i<set.length)
         {  
              t.clear();                        
              if(map.containsKey(set[i]))
                  t=map.get(set[i]);                                                                                          
              t.addElement(BioService);               
              map.put(set[i],t);
              /*if i put t.clear() here i get null values in my output*/                                                                                                                                     
              i++;                
         }       
     }         
  • 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-05-28T15:33:20+00:00Added an answer on May 28, 2026 at 3:33 pm

    It returns a reference to the Object.

    You will never have the actual Object in Java, only ever a reference to it.

    You do have actual primitives (and cannot have references to primitives, only references to Objects that wrap primitives or something like that), but of course primitives cannot be put into maps, only Objects can.

    Let’s say you have the following code:

    Map<String,Vector<String>> map = new HashMap... // etc
    Vector<String> vec = new Vector<String>();
    vec.addElement("foo");
    map.put("foo",vec);
    vec.clear();
    vec.addElement("bar");
    map.put("bar",vec);
    
    Vector<String> ret = map.get("foo");
    System.out.println(ret.get(0)); // prints bar
    

    You only ever use one single vector. You put your vector into the map, and then on the next iteration you clear it. Well, you just cleared the vector that’s inside the map! Just because you put it in the map doesn’t mean it can’t be changed.

    Your best bet, I feel, would be to make a new vector for each entry.

    So replace

    t.clear();
    

    with

    t = new Vector<String>();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does map() iterate through the list like for would? Is there a value in
How do I add extra data into an atom feed that does not map
Am I right in assuming that adding/removing elements to an std::map does not effect
$(document).ready(function() { $('#commentForm').submit(function(){ return $('input[type=text], textarea').each(function(index){ if($(this).attr('value') == ){ alert(msgHash[$(this).attr('id')]); return false; }else{ if(!$(this).attr('value').match(validateHash[$(this).attr('id')])){
In this simplified example I have a generic class, and a method that returns
I am working on a BlackBerry j2me Java implementation that does not have the
I've got a gigantic Trove map and a method that I need to call
We are storing a String key in a HashMap that is a concatenation of
As a follow-up question to What are the reasons why Map.get(Object key) is not
Possible Duplicate: What does map(&:name) mean in Ruby? I was watching a railscast and

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.