I know that the garbage collector of Java can tidy up the dead class instances, but how about the class itself? I mean the static fields of a class?
I know that during the class initialization, static fields get initialized, but after this, is there a way to delete them?