Maybe some of you can help me solving a very strange issue with java and JComboboxes. I tried several hours to trace down the problem but I cant find a solution. I don't want to paste a huge code here, but this simple loop demonstrates it:
JComboBox cb;
for(int i=0;i<1000;i++)
{
cb=new JComboBox();
}
I can run this code wherever I want, the 1000 ComboBoxes are never GCed and I do not understand, why???
A JComboBox creates a DefaultListModel with a listener to the combobox. So garbage collection on such an object cluster is postponed. However after the fourth run with me either the garbage was collected or the JIT found it did not need to create those objects.
Maybe your problem was that calling explicitly
System.gc()
not cleaning it up? That I can imagine.*How to trace the problem
I tried the following to exclude components.