Singleton (Java): Difference between revisions
From My Limbic Wiki
No edit summary |
No edit summary |
||
| (11 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
<syntaxhighlight lang=" | <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> | </syntaxhighlight> | ||
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>