Singleton (Java): Difference between revisions
From My Limbic Wiki
No edit summary |
No edit summary |
| (One intermediate revision by the same user not shown) | |
(No difference)
| |
Latest revision as of 03:21, 30 May 2019
<syntaxhighlight lang="Python" line='line'> /**
* Implémentation simple d'un singleton. * L'instance est créée à l'initialisation. */
public class Singleton {
/** Constructeur privé */
private Singleton()
{}
/** Instance unique pré-initialisée */
private static Singleton INSTANCE = new Singleton();
/** Point d'accès pour l'instance unique du singleton */
public static Singleton getInstance()
{ return INSTANCE;
}
} </syntaxhighlight>