In C and C++ I know that there could be a huge difference in performance between instantiating objects on the stack vs. using 'new' to create them on the heap.
Is this the same in Java?
The 'new' operator in Java is very convenient (especially when I don't have to remember freeing/deleting the objects created with 'new'), but does this mean that I can go wild with 'new'?
newbut for other reasons than performance. Classes that create dependencies on their own are hard for testing which generally lead to low quality code. – Boris Pavlović Mar 18 '11 at 14:14escape analysis java– Prince John Wesley Mar 19 '11 at 3:56