11 2021 档案

摘要:一、简介 Ubuntu18.04 和Ubuntu20.04自带proj4库,没有的话也可以通过apt的方式安装proj-bin库,指令如下 sudo apt-get install proj-bin ubunut18.04的proj4版本是4.9.3, ubuntu20.04的proj4的版本时候6 阅读全文
posted @ 2021-11-30 14:12 chenjian688 阅读(2969) 评论(0) 推荐(0) 编辑
摘要:c++11之前,标准库并无专门的休眠函数,c++11加入了这个功能 需要的头文件: #include <chrono> #include <thread> 使用: std::this_thread::sleep_for(std::chrono::milliseconds(20)); 阅读全文
posted @ 2021-11-23 11:12 chenjian688 阅读(260) 评论(0) 推荐(0) 编辑
摘要:一、通过包管理器安装 #Debian: sudo apt install libspdlog-dev #Homebrew: brew install spdlog #MacPorts: sudo port install spdlog #FreeBSD: pkg install spdlog #Fe 阅读全文
posted @ 2021-11-22 15:25 chenjian688 阅读(3871) 评论(0) 推荐(0) 编辑
摘要:1、std::lock_guard 这个类是一个互斥量的包装类,用来提供自动为互斥量上锁和解锁的功能,简化了多线程编程,用法如下: #include <mutex> std::mutex kMutex; void function() { // 构造时自动加锁 std::lock_guard<std 阅读全文
posted @ 2021-11-05 13:56 chenjian688 阅读(129) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示