|
|
|
|
|
by logicchains
2114 days ago
|
|
>which means Java has many excellent state-of-the-art garbage collectors and a JIT a level beyond that of C#. Unfortunately this isn't enough to make up for the latency hit from not being able to directly stack allocate things like C# allows (especially with its recent addition of Span<T>). |
|
Java does better than direct stack allocation - it does automatic scalar replacement instead.