|
|
|
|
|
by grumpyprole
251 days ago
|
|
The JVM famously boxes everything though, probably because it was originally designed to run a dynamic language. An array list of floats is an array list of pointers. This created an entire cottage industry of alternative collections libraries with concrete array list implementations. |
|
An ArrayList<Float> is a list of pointers though.