I have seen benchmarks where some idiots do just memory allocations and
deallocations where java is faster than C. Which is published on the
website of Sun.
However you can also write the software without stupid memory allocations
and deallocations, then the C code is 3 times faster than the java code.
...
Sorry, Vincent, absolutely not true for Go programming. A straight
translation of Goliath from C to Java lost about 30% in speed given the
right choice of JIT. And that was not because of allocation and
deallocations, as there are zero of that after initialisation.
Hi Mark,