确定对象被使用前已被初始化


/* 有时候可能会用到static变量,如果将static变量定义成non-local的,
   那么我们无法保障在需要使用该变量的时候该变量已经进行被初始化了;
   解决该问题的方式是将non-local的静态变量定义到函数内,
   然后通过返回该静态变量的引用的形式使调用者获取到静态变量;
   该静态变量在函数被第一次调用的时候被初始化 */

#include <iostream>

class Supplier;
class Printer;
Supplier &getSupplier();
Printer &getPrinter();

class Supplier
{
public:
    Supplier(int id = 0) : m_id(id) {
        std::cout << "Book ctor called." << std::endl;
    }
    ~Supplier() {}
    int getId() {
        return m_id;
    }
private:
    int m_id;
};

class Printer
{
public:
    Printer(int id = 0)/* : m_supplier_id(getSupplier().getId())*/ {
        m_supplier_id = getSupplier().getId();
        std::cout << "Printer ctor called." << std::endl;
    }
    ~Printer() {}

private:
    int m_supplier_id;
};

/* 以函数调用返回一个reference指向local static对象,替换直接访问non-local static对象 */
Supplier &getSupplier()
{
    static Supplier stabook;  /* 第一次调用该函数时stabook被初始化,会去执行Supplier的构造函数,
                                 再次调用时这句不会再去执行Supplier的构造函数 */

    return stabook;
}

/* 以函数调用返回一个reference指向local static对象,替换直接访问non-local static对象 */
Printer &getPrinter()
{
    static Printer staprinter;
    return staprinter;
}

int main() {
    Supplier aSupplier;
    Printer aPrinter;
    Printer bPrinter;

    return 0;
}

Reference

Scott Meyers. Effective C++ , 55 Specific Ways to Improve Your Programs and Designs, Third Edition

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值