随笔 - 272  文章 - 0  评论 - 283  阅读 - 142万

设计模式笔记:单例模式(C++代码)

定义:
一个类有且仅有一个实例,并且提供一个访问它的全局访问点。
要点:
1、类只能有一个实例;
2、必须自行创建此实例;
3、必须自行向整个系统提供此实例。

实现一:单例模式结构代码

singleton.h:

复制代码
View Code
#ifndef _SINGLETON_H_
#define _SINGLETON_H_

class Singleton
{
public:
    static Singleton* GetInstance();
protected:
    Singleton();
private:
    static Singleton *_instance;
};

#endif
复制代码

singleton.cpp:

复制代码
View Code
#include "singleton.h"
#include <iostream>
using namespace std;

Singleton* Singleton::_instance = 0;

Singleton::Singleton()
{
    cout<<"create Singleton ..."<<endl;
}

Singleton* Singleton::GetInstance()
{
    if(0 == _instance)
    {
        _instance = new Singleton();
    }
    else
    {
        cout<<"already exist"<<endl;
    }

    return _instance;
}
复制代码

main.cpp:

复制代码
#include "singleton.h"

int main()
{
    Singleton *t = Singleton::GetInstance();
    t->GetInstance();

    return 0;
}
复制代码

实现二:打印机实例

singleton.h:

复制代码
View Code
#ifndef _SINGLETON_H_
#define _SINGLETON_H_

class Singleton
{
public:
    static Singleton* GetInstance();
    void printSomething(const char* str2Print);
protected:
    Singleton();
private:
    static Singleton *_instance;
    int count;
};

#endif
复制代码

singleton.cpp:

复制代码
View Code
#include "singleton.h"
#include <iostream>

using namespace std;

Singleton* Singleton::_instance = 0;

Singleton::Singleton()
{
    cout<<"create Singleton ..."<<endl;
    count=0;
}

Singleton* Singleton::GetInstance()
{
    if(0 == _instance)
    {
        _instance = new Singleton();
    }
    else
    {
        cout<<"Instance already exist"<<endl;
    }

    return _instance;
}

void Singleton::printSomething(const char* str2Print)
{
    cout<<"printer is now working , the sequence : "<<++count<<endl;
    cout<<str2Print<<endl;
    cout<<"done\n"<<endl;
}
复制代码

main.cpp:

复制代码
#include "singleton.h"

int main()
{
    Singleton *t1 = Singleton::GetInstance();
    t1->GetInstance();
    t1->printSomething("t1");

    Singleton *t2 = Singleton::GetInstance();
    t2->printSomething("t2");
    return 0;
}
复制代码

Makefile文件:

复制代码
CC=g++
CFLAGS = -g -O2 -Wall

all:
    make singleton

singleton:singleton.o\
    main.o    
    ${CC} -o singleton main.o singleton.o

clean:
    rm -rf singleton
    rm -f *.o

.cpp.o:
    $(CC) $(CFLAGS) -c -o $*.o $<
复制代码

运行效果:

可以看到,对打印顺序count的计数是连续的,系统中只有一个打印设备。

posted on   Mike_Zhang  阅读(965)  评论(4编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 一个奇形怪状的面试题:Bean中的CHM要不要加volatile?
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· 上周热点回顾(2.24-3.2)
< 2012年6月 >
27 28 29 30 31 1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
1 2 3 4 5 6 7

点击右上角即可分享
微信分享提示