...
Code Block | ||
---|---|---|
| ||
class Foo {
static final Helper helper;
// Lazy initialization
private static class Holder {
static Helper helper = new Helper();
}
public static Helper getInstance() {
return Holder.helper;
}
}
|
...