How to get a c++ constant pointer equivalent in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:00:52Z http://stackoverflow.com/feeds/question/377795 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/377795/how-to-get-a-c-constant-pointer-equivalent-in-java 1 How to get a c++ constant pointer equivalent in Java? sarav 2008-12-18T13:12:37Z 2008-12-18T13:27:27Z <p>When I pass an immutable type object(String, Integer,.. ) as final to a method I can achieve the characters of a C++ constant pointer. But how can I enforce such behavior in objects which are mutable?</p> <pre><code>public void someMethod(someType someObject){ /* * code that modifies the someObject's state * */ } </code></pre> <p>All I want is to prevent someMethod from modifying the state of someObject without making any change in someType. Is this possible?</p> http://stackoverflow.com/questions/377795/how-to-get-a-c-constant-pointer-equivalent-in-java/377808#377808 2 Answer by Bombe for How to get a c++ constant pointer equivalent in Java? Bombe 2008-12-18T13:17:44Z 2008-12-18T13:17:44Z <p>No, you can not prevent the object being modified via its setXXX() (or similar) methods. You could hand in a clone or a copy of it, though.</p> http://stackoverflow.com/questions/377795/how-to-get-a-c-constant-pointer-equivalent-in-java/377814#377814 1 Answer by Nathaniel Flath for How to get a c++ constant pointer equivalent in Java? Nathaniel Flath 2008-12-18T13:19:52Z 2008-12-18T13:19:52Z <p>No, it's not possible. You have to either pass in a copy of the object, or just rely on knowing what actions make state changes to the object and avoid calling them - the compiler won't help you.</p> http://stackoverflow.com/questions/377795/how-to-get-a-c-constant-pointer-equivalent-in-java/377816#377816 5 Answer by kdgregory for How to get a c++ constant pointer equivalent in Java? kdgregory 2008-12-18T13:20:06Z 2008-12-18T13:20:06Z <p>In the general case, no, it's not possible. In a very limited case, you can wrap someType in a class that provides the same interface (see Collections.unmodifiableList() for an example).</p> <p>However, there's no equivalent to "pass a const pointer and the compiler will only allow you to call const functions on it".</p> http://stackoverflow.com/questions/377795/how-to-get-a-c-constant-pointer-equivalent-in-java/377834#377834 1 Answer by Rolf Rander for How to get a c++ constant pointer equivalent in Java? Rolf Rander 2008-12-18T13:27:27Z 2008-12-18T13:27:27Z <p>No, I don't think this is possible. The normal approach is to create an adapter for SomeType where all the methods changing state throws UnsupportedOperationException. This is used by for instance java.util.Collections.unmodifiable*-functions.</p> <p>There are several approaches to this:</p> <ul> <li>you can let SomeType be an interface, and when you need it to be read only, just create a wrapper delegating all the read-methods to the original object and implementing all the write-methods to throw an exception.</li> <li>or you can create a subclass of SomeType overriding all the write methods</li> </ul> <p>This will of course only give you run-time checking, not compiletime. If you want compile-time, you can let SomeType be an interface (or a superclass) with no write-methods, only read.</p>