Lazily instantiate a final field - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T04:05:17Zhttp://stackoverflow.com/feeds/question/672696http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field1Lazily instantiate a final fieldfahdshariff2009-03-23T09:35:43Z2009-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#6727078Answer by Jon Skeet for Lazily instantiate a final fieldJon Skeet2009-03-23T09:38:47Z2009-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#6732151Answer by dhiller for Lazily instantiate a final fielddhiller2009-03-23T12:33:49Z2009-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#6736440Answer by jassuncao for Lazily instantiate a final fieldjassuncao2009-03-23T14:44:58Z2009-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#6736490Answer by james for Lazily instantiate a final fieldjames2009-03-23T14:45:48Z2009-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#6739760Answer by fahdshariff for Lazily instantiate a final fieldfahdshariff2009-03-23T16:01:45Z2009-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<T> {
private T result;
private final Callable<T> callable;
private boolean established;
public Memo(final Callable<T> 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<Connection> conn = new Memo<Connection>(
new Callable<Connection>() {
public Connection call() throws Exception {
return new Connection();
}
});
public Connection getConnection() {
return conn.get();
}
</code></pre>