Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public class EagerInstantiation {
  2. private static EagerInstantiation instance = new EagerInstantiation();
  3.  
  4. private EagerInstantiation() {
  5.  
  6. }
  7.  
  8. public static EagerInstantiation getInstance() {
  9. return instance;
  10. }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement