|
|
|
|
|
by ysleepy
655 days ago
|
|
They only guess the performance difference is because of GC, generating code on the fly and compiling it to classes in your hot path is also probably not cheap. Memory allocation/deallocation overhead is always present, just look at different allocators, fragmentation issues and so on. Using a GC is not intrinsically much different performance wise. |
|