Why finalize not to be used for clean up
| Only the problem with finalize is that garbage collector have to do two rounds to remove object from the memory in first round it put the object into finalize and after this in second round trip it have to clear that object from the finalize method .On the other side the object that have not call in finalize should be clear from memory only in one round trip. | |
