Java does have a widely used idea of a memory leak, but it doesn't mean the same thing as it does in C++. In Java a "memory leak" is any unwanted growth in memory usage. In C++ it means memory which can never be re-used (which never happens in Java)
In C++ all the stages of compilation occur in the C++ compiler which is run before the application starts. The CPU will still perform pre-fetching, decoding and branch prediction so there is some dynamic optimisation of code.
In Java most of the optimising compilation is performed by the JIT at runtime and its output is native code.
I Java everything is notionally virtual, except static methods. "virtual" methdo which have only one implementation do not need to be called virtually (via a lookup table) and Java can inline up to two "virtual" methods even if they come from other libraries. i.e. "virtual" methods many not result in a virtual call.
C++ has shared pointers (standard in C++v11) and allocation of objects on the stack, which can handle automatic memory de-allocation in many cases. For objects which cannot be either, you have to manage these yourself. As shared pointers use reference counts, they do not handle circular references for you.
Java has references which are managed by a garbage collector. There is no simple way to explicitly free an object or allocate objects on the stack. Escape analysis can eliminate the need to allocate some objects, by placing their fields on the stack (but the Sun/Oracle JVM doesn't do this in many simple cases)
Java 7 now has ARM (Automatic Resource Management) which can be used for closing resources, but not freeing objects.
Java is described as platform independent. What this means is its independent of the OS, but has to run on a JVM (which is also described as a platform)
C++ is platform dependant, but with some effort, can be compiled for more systems than Java currently supports.
Java has a long list of libraries which are built in. C++ has boost which provides much of this functionality to some degree. Some of the boost libraries are more mature than others. ;)
Java has the goto and const keyword, you just can't use it anywhere in the syntax. You can still perform a "goto" with break and continue e.g. you can use a break without a loop.
Java doesn't have destructors, but it has finalize()rs The main difference is that you have not idea when, if ever, a finalizer will be called. It is also called in a background thread.
Java's only unsigned type is char which is 16-bit. In C++ its 8-bit. The width of the primitive types is always the same in Java. In C++, there are macros/typedef you can use to get fixed width primitive types.