Is there memory leaks in java?
Answers were Sorted based on User's Feedback
Answer / aravinda reddy
Yes of course, even though garbage collection low priority
threads running in the back ground in jav, there are still
possibilities are there for memory leaks.
Example : Some objects are no longer useful, but some other
objects refers to these objects, in this case garbage
collection process can not reclaim the memory allocated for
unused objects
Is This Answer Correct ? | 6 Yes | 1 No |
What is a null class?
What is the destroy method?
What does it mean to be immutable?
What are the three parts of a lambda expression? What is the type of lambda expression?
What is * argv?
What is finalize()?
Explain about fail fast iterators in java?
Where local and global variables are stored?
Define how does a try statement determine which catch clause should be used to handle an exception?
What modifiers are used with an inner class which is a member of an outerclass?
Make a data structure and implement an algorithm to print all the files in a directory. (The root directory can have sub-directories too.)
What is an class?