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

  • SEARCH
  • Home
  • 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 8308709
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:53:17+00:00 2026-06-08T18:53:17+00:00

I read that Java is passed by value . So lets say we have

  • 0

I read that Java is passed by value . So lets say we have this code and say that the HashMap somehashMap has a longer life time than foo . So foo is not allowed to be garbage collected even though it has done its work simply because we put foo inside the Map and then forgot to remove from it . Now going by the logic of the answer in the post that I linked to we are actually passing a copy of the reference of foo to the method put() right ?In that case putting the foo into the HashMap shouldn’t prevent it from getting garbage collected . Can you please help me understand what is going on here ? What am I missing exactly ?

 public void someMethod(){
     Foo foo  = new Foo();
     somehashMap.put(fooKey,foo); 
  }
  • 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-08T18:53:18+00:00Added an answer on June 8, 2026 at 6:53 pm

    Garbage collection isn’t applicable to references but to actual objects which reside in heap. When you put foo in the Map, you are basically helping it “escape” out of its current scope and putting it in the same scope/life-time as somehashMap.

    References in Java are handled transparently behind the scenes. When you put the foo reference in the map, a copy of the reference is actually passed to the put method call but the underlying object i.e. new Foo() is the same for both the original and the copied references. Let’s look at the below snippet:

    public void doIt() {
      Object f1 = new Object();
      Object f2 = f1;
      Object f3 = f2;
    }
    

    In the above snippet, how many objects are garbage collected after execution of doIt completes? It’s just the single new Object() which we created. Rest all are simply references or aliases which are used to point to the same object.

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

Sidebar

Related Questions

I have read that in Java interfaces can't be instantiated ( in the documentation,
I am new to Java. I just read that class variables in Java have
What value does the hashCode() method return in java? I read that it is
OK, I've read around and see that Java only passes by value, not by
I have a multithreaded Java code in which: several threads read stateful objects from
Does Java have a default System Environment Variable that will always be read/appended when
I have read every where that primitive datatype and object references are passed by
I have a some java code that simulates bank transfers. The account class simply
I read that in Java, String is immutable, so we can't really use toLowerCase
I've read that the EJB encapsulates the business logic in a Java EE environment,

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.