# bufferPool_cpp **Repository Path**: zhangjixiang2021/buffer-pool_cpp ## Basic Information - **Project Name**: bufferPool_cpp - **Description**: c++的内存池及阻塞队列 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-12 - **Last Updated**: 2024-02-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 说明 该项目中有三个文件,blockQueue.hpp是一个阻塞队列,bufferPool和framePool都可以当做内存池来使用。 阻塞队列中接收的是一个指针,示例中将framePool内存池中的地址放入到阻塞队列中管理。 这个三个文件都可以单独使用。