If circular link of two objects, then will it be garbage
collected ?

Answers were Sorted based on User's Feedback



If circular link of two objects, then will it be garbage collected ?..

Answer / uppaluri

No

Is This Answer Correct ?    7 Yes 1 No

If circular link of two objects, then will it be garbage collected ?..

Answer / rt

Yes it will be garbage collected.

e.g.

public void testMethod(){
A a= new A();
B b = new B();

a= b;
b= a;

}
After above method get executed Object a & b will be garbage
collected.

Is This Answer Correct ?    3 Yes 3 No

If circular link of two objects, then will it be garbage collected ?..

Answer / dhanunjay

I think not so,because that will be reused allocated memory for both....Here not to waste our memory

Is This Answer Correct ?    4 Yes 7 No

Post New Answer

More Core Java Interview Questions

Can you pass functions in java?

0 Answers  


Can we define a package statement after the import statement in java?

0 Answers  


abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


In how many ways we can the thread? in java

3 Answers  


Can a class be private or protected in java?

0 Answers  


What is the reason that multiple inheritance is not possible in java??

1 Answers  


Write a program to solve producer consumer problem in java?

0 Answers  


what is the difference between Cpp And Java

15 Answers   Infosys,


what is marker interface ? what is the necessity of it?

5 Answers   Accenture, Newgen,


What is java argument list?

0 Answers  


What does void * mean?

0 Answers  


What is the diff. b/w Interfaces & Abstract class?

6 Answers   Ericsson,


Categories