Last active
August 29, 2015 13:59
-
-
Save minisu/10729342 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Foo { | |
| private Helper helper = null; | |
| public Helper getHelper() { | |
| if (helper == null) | |
| helper = new Helper(); | |
| return helper; | |
| } | |
| } | |
| //////////////////////////////////////////////// | |
| class Foo { | |
| private Helper helper = null; | |
| public Helper synchronized getHelper() { | |
| if (helper == null) | |
| helper = new Helper(); | |
| return helper; | |
| } | |
| } | |
| //////////////////////////////////////////////// | |
| class Foo { | |
| private Helper helper = null; | |
| public Helper getHelper() { | |
| if (helper == null) { | |
| synchronized (this) { | |
| if (helper == null) { | |
| helper = new Helper(); | |
| } | |
| } | |
| } | |
| return helper; | |
| } | |
| } | |
| //////////////////////////////////////////////// | |
| class Foo { | |
| private volatile Helper helper = null; | |
| public Helper getHelper() { | |
| if (helper == null) { | |
| synchronized (this) { | |
| if (helper == null) { | |
| helper = new Helper(); | |
| } | |
| } | |
| } | |
| return helper; | |
| } | |
| } | |
| /////////////////// Using Guava ////////////////////// | |
| Supplier.memoize( () -> new Helper() ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment