🎴 Flashcard Mode
PS Framework and Design Patterns Architecture
Card1 / 20
Mastered0
Review0
QuestionClick to flip
There is no method of implementing a Singleton class that permits inheritance.
AnswerClick to flip back
A
False
💡 Explanation:
Design pattern principles show that it is entirely possible to implement a Singleton class that allows subclassing and inheritance, typically by using protected constructors or registry patterns.