# cpp-learn **Repository Path**: passerjia02/cpp-learn ## Basic Information - **Project Name**: cpp-learn - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-03-27 - **Last Updated**: 2025-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 环形队列实现(有锁,无锁) ## 编译 ```sh cd build cmake .. && cmake --build . ``` ## 运行测试 ```sh # build目录下运行 ctest --output-on-failure # 运行指定用例 ctest -R "RingQueueMultiThreadTest.*" # 正则匹配用例名 ```