Say I have classes
class A{
//code for class A
}
class B{
//code for class B
}
class A{
public static void main(String a[]){
//Initialize m instances of A and n instances of B and store each in arrays
//Equate any arbit index in the array to null
}
}
In this scenario, my main goal is to find all active instances of classes A and B in the memory at any point.
I suppose it must be possible using a debugger.
However, due to some reason (the reason being beyond the scope of the question), I am required to get the instances from within the code itself. Thus, i need a function like
public void getAllActiveInstances(){
//Print values
}
Edit: I don't need instances to operate over them. I just need to know whether they exist or not. This is mainly for debugging purposes. If this is not possible then kindly explain how to do the same using debuggers.