[Guía] Patrones de diseño - Parte 1

Iniciado por Usuario Invitado, 30 Enero 2015, 23:30 PM

0 Miembros y 1 Visitante están viendo este tema.

Trane!

Si en el singleton haces lazy initialization, lo mejor es hacerlo tambien "thread safe" para asegurarte de inicializarlo solo una vez. (Perdon por revivir el tema pero lo vi en destacados)

Código (java) [Seleccionar]

public static Configuration getConfiguration() {
if(config == null) {
                   synchronized (Configuration .class) {
                      if(config == null) {
 config = new Configuration();
                      }
                   }
}
           return config;
}

jangeld

buen tema  ;-)...  Habrá segunda parte?
Nunca sabes lo suficiente. Siempre hay algo nuevo que aprender

rub'n

y patron tipo MVP MODEL VIEW PRESENTER? saludos buen post.


rubn0x52.com KNOWLEDGE  SHOULD BE FREE!!!
If you don't have time to read, you don't have the time (or the tools) to write, Simple as that. Stephen