Is it possible for a Java application to be faster than a program written in C++? Also, what is release mode in compilation ?
|
|
Languages don't have a speed. A good Java compiler may generate more efficient code than a bad C++ compiler, and vice versa. So which one is "fastest"? Execution speed depends on several factors:
But the language is in principle irrelevant. Each language enforces certain guarantees which, might prevent certain optimizations. But a clever compiler may determine that these guarantees can be safely bypassed in this particular case, making the optimization anyway. (For example, a Java compiler will often try to eliminate the bounds-checking that is required by the language). So it depends on the code you're testing (Java code ported to C++ will probably run better in the Java version, and vice versa), and on how you compile it and where you run it. So as Martin York says, it's a silly question. It's impossible to answer. Of course Java can be faster than C++ in some situations. For example, if you write really good Java code and really bad C++ code. Or if you use a lousy C++ compiler. Or if any of a million other things just so happen to favor the Java version a bit. Say after me: Languages don't have a speed. Which is fastest? English or french? Both are just ways to associate meaning with sounds, or squiggles on paper. The same applies to programming languages. A programming language is just a way to associate semantics with a sequence of characters in one or more files. |
|||||||
|
|
Unlike some people here, I'm going to be reasonable and answer the question that I know the OP intended to ask, even though his statement of it could have been better. Yes, a typical java implementation can be faster than a typical C++ implementation for real-world things. Even though Java has a few handicaps from being a safe, VM language, it makes up for some of them, too. For one thing, since Java has a very abstract memory management scheme that does not allow raw pointers or untyped memory blocks to be manipulated, it can use a moving garbage collector. In C++, untyped memory regions, unions, etc. would break this. Therefore, when a GC does not need to be run, allocations in Java can simply be a pointer bump. There is no practical way to do this in C++, since a fully moving GC cannot be implemented in a language that supports the kind of low level manipulations that C++ does. Furthermore, the VM of a typical implementation of Java is a double-edged sword relative to the statically compiled typical C++ implementation. The VM has some inherent overhead, but also allows some extra optimizations. For example, let's say you have some kind of virtual function like (Please excuse incorrect syntax, as I don't regularly use Java):
In C++, a virtual function call on foo.stuff() would likely have to be performed for all 1,000,000 iterations. In Java, the VM might be able to replace this with a direct call at runtime, after realizing that there is no semantically legal way for foo to be rebound to an object of class Foo2. |
|||
|
|
I think there are plenty of questions you can browse through that are similar. Have a look here, for example: C++ Performance vs. Java/C# |
|||
|
|
|
Yes it can: Make a Java program that uses a good algorithm, and a C++ one that uses a bad one and the Java version will likely be faster. |
|||
|
|
You can see c++ and java language comparison where few cases java is faster. Also I have added a tables for Java and C++ and you ca see some other the cases are faster in java compared to C++. Lower numbers are better. E.g binary-trees search is better in java (2.89) secs versus 4.47 secs in c++.
http://shootout.alioth.debian.org/gp4/benchmark.php?test=all&lang=javaxx&lang2=javaxx
http://shootout.alioth.debian.org/gp4/benchmark.php?test=all&lang=gpp&lang2=gpp
|
||||
|
|
|
If I believe what some Java evangelist say, I would answer "yes" to the first question. Ie. a Java program "can" be faster. Not always, though... To answer the second question, release mode for a C/C++ compiler means a compilation without debugging information: the latter stores additional information like line numbers corresponding to generated code (easier for debugging and error reporting), and avoids optimizations (which can change code order and mess with above info). |
|||
|
|
Release Mode means that you build your program because you want to release it out to the public. Usually, the compiler will try harder to make the executable smaller and faster. This often means getting rid of symbol information needed get a backtrace of a crash and using a higher optimize level. The latter makes compilation time slower, so it's not used when building in Debug Mode. |
|||
|
|
|
Most discussion compare applications compiled from source. However if you have an old library e.g. from a third party, you can find that an old java library is much faster as it will still be able to use the latest instructions/techniques whereas an old library already compiled to native code cannot. |
|||
|
|
|
I guess the most interesting thing you can say on this topic is that a modern JVM does some speculative optimizations. Optimizations based on guesses about the stableness of some values, whith the possibility to unoptimize that code if the value should change in the future. OTOH this is nothing inherent with the languages in question. I saw a research project a couple of years ago that managed to get an extra 20% out of some natively compiled code (maybe even from C++) by running it in an emulator emulating the same CPU as the hardware but performing some VM-style optimizations on the code. |
|||
|
|
|
Yes it can. The JIT compiler can optmize the code to run faster. While in C++ you have to do that optmization by hand. |
|||||||||||||||||
|