
c++
abqchina
这个作者很懒,什么都没留下…
展开
-
std::async 使用中遇到后面代码执行不到问题
std::async(std::launch::async, []() { while (true) { std::this_thread::sleep_for(std::chrono::seconds(3)); std::cout << 867 << std::endl; } return 8; //return 8;});std::cout &l...原创 2019-11-07 17:35:57 · 574 阅读 · 0 评论 -
spdlog 个人封装,欢迎使用,共同探讨
#ifndef _MY_LOG_HPP_#define _MY_LOG_HPP_#include "spdlog/spdlog.h"#include "spdlog/sinks/basic_file_sink.h" // support for basic file logging#include "spdlog/sinks/rotating_file_sink.h" // suppo...原创 2019-09-10 16:09:38 · 2200 阅读 · 21 评论