+ 1
What is finalized method in context of java?
In a challenge question i found "can a finalized method can be overriden? " and answer is "true". Is final method , finalize method are the same? I don't think so? If yes, Final method can not overridden. Then Ans should be false.. For this, May i get some clarification? Edit: I know finalized methods.. But that does not same to final method.?
2 Antworten
+ 1
finalize method called by the garbage collector on an object when garbage collection determines that there are no more references to the object.
0
+ is deprecated