关于单例模式&和静态变量的特性

 

单例模式:: 只产生一个对象,且所有用户共用一个对象

#include <iostream>
using namespace std;

class Single
{
public:
    //创建一个对外接口
    static Single* Get_Instance()
    {
        if (!sg)
        {
            sg = new Single();
        }
        return sg;
    }

private:
    Single() {};
    Single(const Single&) {};
    static Single* sg;
};
//类外初始化
Single* Single::sg = new Single;


int main()
{
    Single* S1 = Single::Get_Instance();
    return EXIT_SUCCESS;
}

静态变量属于在编译期进行初始化,所以Single的默认构造应该是先于main函数运行的

我们在Single的默认构造和main函数中插入打印语句,以便观测谁先被调用

#include <iostream>
using namespace std;

class Single
{
public:
    //创建一个对外接口
    static Single* Get_Instance()
    {
        if(!sg)
        {
            sg = new Single();
        }
        return sg;
    }

private:
    Single() { cout << "Single默认构造调用" << endl; };
    Single(const Single&) {};
    static Single* sg;
};
//类外初始化
Single* Single::sg = new Single;


int main()
{
    cout << "main函数开始运行" << endl;
    Single* S1 = Single::Get_Instance();
    return EXIT_SUCCESS;
}

运行结果

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值