Lazily instantiate a final field - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:05:17Z http://stackoverflow.com/feeds/question/672696 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field 1 Lazily instantiate a final field fahdshariff 2009-03-23T09:35:43Z 2009-03-23T16:01:45Z <p>Is it possible to lazily instantiate a final field?</p> <p>The following code does not compile:</p> <pre><code>public class Test{ private final Connection conn; public Connection getConnection(){ if(conn==null){ conn = new Connection(); } return conn; } } </code></pre> <p>Is there an alternative?</p> http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field/672707#672707 8 Answer by Jon Skeet for Lazily instantiate a final field Jon Skeet 2009-03-23T09:38:47Z 2009-03-23T09:38:47Z <p>No. The point of a final field is that it's set once, during construction, and will never change thereafter. How could the compiler or the VM know anything useful about <code>conn</code> in your case? How would it know that only that property should be able to set it, and not some other method?</p> <p>Perhaps if you explained what you want the semantics to be, we could come up with an alterative. You could potentially have a "provider" interface representing a way to fetch a value, and then a <code>MemoizingProvider</code> which proxies to another provider, but only once, caching the value otherwise. That wouldn't be able to have a final field for the cached value either, but at least it would only be in one place.</p> http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field/673215#673215 1 Answer by dhiller for Lazily instantiate a final field dhiller 2009-03-23T12:33:49Z 2009-03-23T14:06:08Z <p>As Jon Skeet said, no, there isn't.</p> <p>Interpreting your code sample you may want to do something like this:</p> <pre><code>public class Test{ private final Object mutex = new Object(); // No public locking private Connection conn; public Connection getConnection(){ if(conn==null){ synchronized (mutex) { if(conn==null){ conn = new Connection(); } } } return conn; } } </code></pre> http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field/673644#673644 0 Answer by jassuncao for Lazily instantiate a final field jassuncao 2009-03-23T14:44:58Z 2009-03-23T14:44:58Z <p>As a side note, it's possible to change a final field. At least instance fields. You just need some reflection:</p> <pre><code>import java.lang.reflect.Field; public class LazyFinalField { private final String finalField = null; public static void main(String[] args) throws Exception { LazyFinalField o = new LazyFinalField(); System.out.println("Original Value = " + o.finalField); Field finalField = LazyFinalField.class.getDeclaredField("finalField"); finalField.setAccessible(true); finalField.set(o, "Hello World"); System.out.println("New Value = " + o.finalField); } } Original Value = null New Value = Hello World </code></pre> http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field/673649#673649 0 Answer by james for Lazily instantiate a final field james 2009-03-23T14:45:48Z 2009-03-23T14:45:48Z <p>dhiller's answer is the classic double checked locking bug, <em>do not use.</em></p> http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field/673976#673976 0 Answer by fahdshariff for Lazily instantiate a final field fahdshariff 2009-03-23T16:01:45Z 2009-03-23T16:01:45Z <p>Here's one way you can do it using Memoisation (with Callables):</p> <p>Class Memo:</p> <pre><code>public class Memo&lt;T&gt; { private T result; private final Callable&lt;T&gt; callable; private boolean established; public Memo(final Callable&lt;T&gt; callable) { this.callable = callable; } public T get() { if (!established) { try { result = callable.call(); established = true; } catch (Exception e) { throw new RuntimeException("Failed to get value of memo", e); } } return result; } } </code></pre> <p>Now we can create a final conn!</p> <pre><code>private final Memo&lt;Connection&gt; conn = new Memo&lt;Connection&gt;( new Callable&lt;Connection&gt;() { public Connection call() throws Exception { return new Connection(); } }); public Connection getConnection() { return conn.get(); } </code></pre>