Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Whats the current Javas performance in comparison with Fortran, C, C++?

0
Posted

Whats the current Javas performance in comparison with Fortran, C, C++?

0

Here is an article comparing performance of Java with C language: http://www.aceshardware.com/Spades/read.php?article_id=153. As you can see, in some cases, Java’s hotspot performance engine (come with JDK1.3) achieves better performance than standard C. The reason is that Java Hotspot performance engine is able to dynamically identify the hotspot of the Java program and do dynamically linking, inlining and optimization, which C language can not do such optimizations because C is statically compiled. By using Java, GT applications, unlike other traditional parallel applications, do not require the binary/bytecode to be residing in the remote machines physically. The code will be dynamically transmitted to the remote machines for execution. This removes a big headache in order to run a parallel application.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123