|
|
|
|
|
by milesrout
479 days ago
|
|
Memory leaks are not possible in garbage collected languages unless you retain references to data, but by definition that isn't a memory leak, that is exactly the behaviour that you want. Memory leaks are situations where memory is unrecovered despite there being no path to it from any active thread. |
|
Talking about leaks this way is absolutely normal. Take https://stackoverflow.com/questions/6470651/how-can-i-create... for tons of examples.