C/C++
Command07
程序爱好者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++日志系统log4cxx
安装yum安装直接使用yum安装log4cxx.x86_64(库文件) log4cxx-devel.x86_64(头文件) yum install log4cxx.x86_64 # 库文件yum install log4cxx-devel.x86_64 # 头文件源码安装log4cxx的编译依赖于apr和apr-util这两个组件。 从http://ar...原创 2018-06-10 23:42:37 · 1794 阅读 · 0 评论 -
C++11多线程编程 -- thread
std::thread类#include <thread>namespace std { class thread { public: // constructor thread() noexcept; thread(thread&& other) noexcept; ...原创 2018-07-10 11:00:36 · 367 阅读 · 0 评论
分享