forked from mouredev/roadmap-retos-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4acaf60
commit 81a5fab
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
public class simonguzman { | ||
public static void main(String[] args) { | ||
genericSingleton(); | ||
} | ||
|
||
public static void genericSingleton(){ | ||
Singleton singleton = Singleton.getInstance(); | ||
singleton.showMessage(); | ||
} | ||
|
||
public static class Singleton{ | ||
private static Singleton instance; | ||
|
||
private Singleton(){ | ||
|
||
} | ||
|
||
public static Singleton getInstance(){ | ||
if(instance == null){ | ||
instance = new Singleton(); | ||
} | ||
return instance; | ||
} | ||
|
||
public static void showMessage(){ | ||
System.out.println("Soy un Singleton."); | ||
} | ||
} | ||
} |