Ejemplo 1: ¿que es el patrón de diseño singleton?
Singleton Design Pattern is basically limiting our class so that
whoever is using that class can only create 1 instance from that class.
I create a private constructor which limits access to the instance of the class.
Than I create a getter method where we specify how to create&use the instance.
- I am using JAVA Encapsulation OOP concept.
Ejemplo 2: ejemplo de patrón de diseño singleton
this is good
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)