Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 14
    Nitpick: JIT optimizations are available to static compilers if you're willing to do a little work. Both GCC and MS Visual Studio support Profile Guided Optimizations which optimize using saved runtime data. It's a little misleading to suggest there are optimizations "that static compilers (...) cannot do". Commented Jan 13, 2011 at 16:58
  • 5
    I don't know why this is the accepted answer, nothing in this post holds any semblance of truth. C based languages will always outperform Java, as Java is a Virtual machine hinged on another language inherently. Furthermore, anything you can achieve in Java you can achieve in C with less overhead. C based languages will never cease to be the 'performant' language. Commented Sep 25, 2014 at 14:29