# Ark_ThreadPool **Repository Path**: zhangzhihai_project/ark_thread-pool ## Basic Information - **Project Name**: Ark_ThreadPool - **Description**: 自己写的线程池 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-06-23 - **Last Updated**: 2024-07-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Ark_ThreadPool #### 介绍 自己写的线程池 #### 项目代码结构 Ark_ThreadPool/ ├── CMakeLists.txt ├── README.md ├── include/ │ └── async_task_queue.h │ └── ark_lighty_queue.h │ └── ... ├── src/ │ ├── CMakeLists.txt │ ├── async_task_queue.cpp │ ├── ark_lighty_queue.cpp │ └── ... ├── tests/ │ ├── CMakeLists.txt │ ├── ark_lighty_queue_test.cpp │ └── ... ├── examples/ ├── CMakeLists.txt #### 运行编译项目 rm -rf CMakeCache.txt CMakeFiles # 先清空下 【一般情况不需要清空build整个目录】 从 build 目录中运行 cmake 命令指向上一级目录:cmake .. 使用 make 命令编译项目:make 编译完成后,可以运行测试类:./tests/ark_lighty_queue_test #### 使用脚本编译项目 # 要对这个脚本先授权:chmod +x build.sh /home/5_Ark_threadpool/ark_thread-pool/build/build.sh #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ### git 相关介绍 在vscode 底部终端窗口执行命令: 配置 Git 缓存凭证:git config --global credential.helper cache 或者或者使用存储凭证:git config --global credential.helper store 在第一次推送代码时,输入用户名和密码(或私人令牌),之后 Git 会自动记住这些凭证。 【这样不用每次都输入密码】