SlideShare a Scribd company logo
SpecialTopicsinSoftwareEngineering
CreationalPatterns
SingletonPattern
Abstract Factory √
Builder √
Factory Method √
Prototype √
Singleton
Singleton Pattern
Singleton Pattern
Singleton Pattern
Singleton Pattern
Singleton Pattern
• Defines an Instance
operation that lets clients
access its unique instance.
Instance is a class operation.
• May be responsible for
creating its own unique
instance.
Clients access a Singleton instance solely through
Singleton's Instance operation.
Singleton Pattern
Singleton Pattern
Singleton Pattern
class Singleton {
public:
static Singleton* Instance();
protected:
Singleton();
private:
static Singleton* _instance;
};
//The corresponding implementation is
Singleton* Singleton::_instance = 0;
Singleton* Singleton::Instance () {
if (_instance == 0) {
_instance = new Singleton;
}
return _instance;
}
Singleton Pattern
Singleton Pattern
Singleton Pattern

More Related Content

PPTX
Observer & singleton pattern
PPTX
Singleton Pattern
PPTX
Singleton Design Pattern - Creation Pattern
PPTX
The Singleton Pattern Presentation
PPT
Singleton design pattern
PPT
Introduction to Design Patterns and Singleton
PPTX
Design Pattern - Singleton Pattern
PDF
Factory Design Pattern
Observer & singleton pattern
Singleton Pattern
Singleton Design Pattern - Creation Pattern
The Singleton Pattern Presentation
Singleton design pattern
Introduction to Design Patterns and Singleton
Design Pattern - Singleton Pattern
Factory Design Pattern

What's hot (20)

PPT
Design Patterns
PPTX
Insecure Java Deserialization
PPTX
PDF
Unit testing Agile OpenSpace
PPTX
Unit Testing with xUnit.net - Part 2
PPT
Abstract Factory Pattern
PPT
Introduction to design_patterns
PPTX
C# Constructors
PPTX
Structural pattern 3
PPT
Jump Start To Ooad And Design Patterns
PPTX
Java interface
PPTX
Effective Java - Chapter 2: Creating and Destroying Objects
PPTX
Using idempotent filter
PPTX
TestNG Data Binding
PPTX
PATTERNS03 - Behavioural Design Patterns
ODP
Object Oriented Prograring(OOP) java
PPTX
.NET: Thread Synchronization Constructs
PDF
Optimistic Offline Locking
PPTX
Unit Testing in Java
Design Patterns
Insecure Java Deserialization
Unit testing Agile OpenSpace
Unit Testing with xUnit.net - Part 2
Abstract Factory Pattern
Introduction to design_patterns
C# Constructors
Structural pattern 3
Jump Start To Ooad And Design Patterns
Java interface
Effective Java - Chapter 2: Creating and Destroying Objects
Using idempotent filter
TestNG Data Binding
PATTERNS03 - Behavioural Design Patterns
Object Oriented Prograring(OOP) java
.NET: Thread Synchronization Constructs
Optimistic Offline Locking
Unit Testing in Java
Ad

Viewers also liked (7)

DOCX
List of all php array functions
DOCX
Useful functions for arrays in php
PDF
Catalog (eastern cables)_book
PDF
Wire Strand Chart
PPTX
PHP Function
PDF
Shyam cable catalogue
PPTX
Face Detection
List of all php array functions
Useful functions for arrays in php
Catalog (eastern cables)_book
Wire Strand Chart
PHP Function
Shyam cable catalogue
Face Detection
Ad

Recently uploaded (20)

PDF
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
PPT
Project quality management in manufacturing
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Geodesy 1.pptx...............................................
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PDF
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
Construction Project Organization Group 2.pptx
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
Current and future trends in Computer Vision.pptx
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
Fundamentals of safety and accident prevention -final (1).pptx
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PPTX
Fundamentals of Mechanical Engineering.pptx
PDF
Well-logging-methods_new................
Unit I ESSENTIAL OF DIGITAL MARKETING.pdf
Project quality management in manufacturing
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Geodesy 1.pptx...............................................
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Embodied AI: Ushering in the Next Era of Intelligent Systems
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Construction Project Organization Group 2.pptx
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Current and future trends in Computer Vision.pptx
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
Fundamentals of safety and accident prevention -final (1).pptx
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
CYBER-CRIMES AND SECURITY A guide to understanding
Fundamentals of Mechanical Engineering.pptx
Well-logging-methods_new................

Singleton Pattern