6 ms·
Sorry for my naivety, but when does Java use the stack? Only for primitive operations?
by sil3ntmac 13y ago
Sorry for my naivety, but when does Java use the stack? Only for primitive operations?
- pkolaczk 13y agoIf you turn Escape Analysis on, it allocates objects not escaping the local method scope on the stack.