Created
August 4, 2016 08:42
-
-
Save nichtemna/600df2cf19ff7a5dca1d1cfe6f355881 to your computer and use it in GitHub Desktop.
Synchronized Singleton
This file contains 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
public class Singleton{ | |
private static Singleton instance; | |
private Singleton(){} | |
public static synchronized Singleton getInstance(){ | |
if (instance == null){ | |
instance = new Singleton(); | |
} | |
return instance; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment