池化技术-版本一

        版本1: 需求:可以取得和归还池对象,池对象组织形式为先进先出 (FIFO),队列中池对象的个数要有上限, 可以管理不同类型的池对象。

        设计: 对象池类设计为模板类型, 使用queue存储池对象, 提供borrowObject(),和 returnObject() 两个接口函数。

#include<iostream>
#include<string>
#include<deque>

using namespace std;
class Point
{
    int _x;
    int _y;
public:
    Point() :_x(0), _y(0) {}
    Point(int x, int y) :_x(x), _y(y) {}
    void Print() const
    {
    cout << "X: " << _x << " Y: " << _y << endl;
    }
    void SetX(int x) { _x = x; }
    void SetY(int y) { _y = y; }
    int GetX() const { return _x; }
    int GetY() const { return _y; }
};
///
// 简单日志
#define LOG(info) \
    cout << __FILE__ << ":" << __LINE__ << " " \
    << __TIMESTAMP__ << " : " << info << endl;
const int MaxObjectNum = 10;
template<class T>
class ObjectPool
{
private:
    bool needClose; // 需要关闭标记
    std::deque<T*> m_object_queue; // 存储池对象
public:
    ObjectPool() :needClose(false) {}
    ObjectPool(const ObjectPool&) = delete;
    ObjectPool& operator=(const ObjectPool&) = delete;
    ~ObjectPool()
    {
        Close();
    }
    void Close() // 关闭对象池
    {
        needClose = true;
        Clear();
    }
    void Clear() // 清空对象池
    {
        for (auto x : m_object_queue)
        {
            delete x;
        }
    }
    size_t GetNumIdle() const
    {
        return m_object_queue.size();
    }
    void Init(size_t num)
    {
        if (needClose)
        {
            LOG("对象池已关闭");
            exit(1);
        }
        if (num <= 0 || num > MaxObjectNum)
        {
            LOG("创建对象个数错误");
            exit(1);
        }
        for (size_t i = 0; i < num; ++i)
        {
        // 添加对象
            m_object_queue.push_back(new T());
        }
    }
public:
    T* borrowObject() //借对象
    {
        if (m_object_queue.empty())
        {
            LOG("队列已空无对象可借");
            return nullptr;
        }
        // 将队列中的对象借出
        T* tmp = m_object_queue.front();
        m_object_queue.pop_front();
        return tmp;
    }
    void returnObject(T* p)
    {
        if (nullptr == p)
        {
            LOG("借出对象丢失或提供了nullptr 指针");
            return;
        }
        m_object_queue.push_back(p);
        LOG("对象已经归还");
    }
};
// 测试
int main()
{
    ObjectPool<Point> objpool;
    objpool.Init(2);
    Point* p1 = objpool.borrowObject();
    Point* p2 = objpool.borrowObject();
    Point* p3 = objpool.borrowObject();
    Point* p4 = objpool.borrowObject();
    Point* p5 = objpool.borrowObject();
    //
    objpool.returnObject(p1);
    objpool.returnObject(p2);
    objpool.returnObject(p3);
    objpool.returnObject(p4);
    objpool.returnObject(p5);
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

安冉冄先森

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值