In C++, I can define an accessor member function that returns the value of (or reference to) a private data member, such that the caller cannot modify that private data member in any way.
Is there a way to do this in Java?
If so, how?
I know about the final keyword but AFAIK, when applied to a method it:
- Prevents overriding/polymorphing that method in a subclass.
Makes that method inline-able.(see comment by @Joachim Sauer below)
But it doesn't restrict the method from returning a reference to a data member so that it can't modified by the caller.
Have I overlooked something obvious?
finalis not necessary for the JVM to inline a method. – Joachim Sauer May 4 '11 at 16:11static finalfields that are initialized with a constant expression (so called "compile time constants") can be inlined, no method inlining of any kind is specified in Java. It's a possible runtime optimization of the JVM at runtime, but it must not effect the observed behaviour (which is easier to do withfinalmethods, but possible with non-finalones as well). – Joachim Sauer May 4 '11 at 17:27