1 | Java omits several rarely used, poorly understood and confusing features of C++ including operator overloading, multiple inheritance, pointers and automatic type coercion's. |
2 | It adds automatic garbage collection which makes dynamic programming easier in Java than in C or C++. |
3 | No more mallocs! |
4 | It also adds 'Interface' construct, similar to Objective C concept, which often compensates for the lack of multiple inheritance by allowing method calling syntax to be "inherited". |