Comment Re:C/C++ implementation (Score 1) 98
Const references? Here you are:
final Object obj = new Object();
In Java everything is passed by VALUE (yes, that's not a mistake) - both primitive types and references.
When you pass the 'obj' variable from the example above as a method parameter,
you actually pass the reference (or pointer in other words) by value.