Quantcast
Channel: Rico Magnucki – icancode.de
Viewing all articles
Browse latest Browse all 32

Singleton mit Enums

$
0
0

Immer wieder die alte Leier mit Singletons. Wie Torsten schon ganz richtig drauf hingewiesen hat, haben Singletons ein großes Problem mit Threadsicherheit.

Wenn ich an ein Singleton denke, dann denke ich erstmal an etwas in der Art:

public class Singleton {
  private static Singleton instance;

  private Singleton() {}

  public static Singleton getInstance() {
    if (Singleton.instance == null) {
      Singleton.instance = new Singleton();
    }
    return Singleton.instance;
  }
}

getInstance() mit null-Check. Fertig. Wenn da nicht diese Nebenläufigkeit wäre. Um die geht es hier aber eigentlich nicht vordergründig. Habt ihr mal darüber nachgedacht, einen Enum für ein Singleton zu benutzen? Das könnte z.B. so aussehen.

public enum Singleton{
    INSTANCE;
}

Ja ja, so einen Enum hat jeder schon mal gesehen. Der Clou: Enums können eben auch Methoden und Variablen halten. Durch die Implementierung von Enums sind diese nicht nur threadsicher, sie werden auch erst bei der ersten Verwendung erzeugt.

public enum Singleton{
    INSTANCE;
    
    private String value;

    public void connect() {}  
    public String getValue() {}
}

Die Verwendung ist einfach:

Singleton.INSTANCE.getValue()

Fertig!

Der Artikel Singleton mit Enums erschien zuerst auf icancode.de.


Viewing all articles
Browse latest Browse all 32

Trending Articles


Girasoles para colorear


mayabang Quotes, Torpe Quotes, tanga Quotes


Tagalog Quotes About Crush – Tagalog Love Quotes


OFW quotes : Pinoy Tagalog Quotes


Long Distance Relationship Tagalog Love Quotes


Tagalog Quotes To Move on and More Love Love Love Quotes


5 Tagalog Relationship Rules


Best Crush Tagalog Quotes And Sayings 2017


Re:Mutton Pies (lleechef)


FORECLOSURE OF REAL ESTATE MORTGAGE


Sapos para colorear


tagalog love Quotes – Tiwala Quotes


Break up Quotes Tagalog Love Quote – Broken Hearted Quotes Tagalog


Patama Quotes : Tagalog Inspirational Quotes


Pamatay na Banat and Mga Patama Love Quotes


Tagalog Long Distance Relationship Love Quotes


BARKADA TAGALOG QUOTES


“BAHAY KUBO HUGOT”


Vimeo 10.7.0 by Vimeo.com, Inc.


Vimeo 10.7.1 by Vimeo.com, Inc.