https://kotlinlang.org logo
a

Ashutosh Panda

12/03/2019, 12:12 PM
Hi can anyone explain me what is singleton class in simple language I can't understant it
b

basher

12/03/2019, 12:16 PM
It's a class you only create/instantiate once
m

Matteo Mirk

12/03/2019, 3:29 PM
Ensure a class has only one instance, and provide a global point of access to it.
https://sourcemaking.com/design_patterns/singleton
1
2 Views