When finalize method is called?
Answers were Sorted based on User's Feedback
Answer / janet
finalize() method is used just before and object is
destroyed and can be called just prior to garbage
collection.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ravikiran(aptech mumbai)
finalize method is used to conserve the resources before
garbage collection
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sourabh
finalizr method call just before the garbage collector
| Is This Answer Correct ? | 0 Yes | 0 No |
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;
Where is stringbuffer stored?
Why string is immutable with example?
What is the difference between procedural and object-oriented programs?
Explain about java sdk?
What is a bubble sort in java?
What is the static method?
What is mysql driver class name?
'A class is a template for an object' explain this statement.
0 Answers Akamai Technologies,
when you will synchronize a piece of your code? : Java thread
Give me an example of array and linked list? Where they can be used?
Why only one Class is public in one file? Explain in details. Thanks in Advance.