摘要: 循环日志文件 //将github上的spdlog库下载,include头文件包含到该项目中 #include "spdlog/spdlog.h" #include "spdlog/sinks/stdout_color_sinks.h" #include "spdlog/sinks/basic_fil 阅读全文
posted @ 2021-01-19 22:56 Truman001 阅读(805) 评论(0) 推荐(0) 编辑
摘要: 解决: 打开tomcat文件夹到conf目录下找到logging.properties文件; 找到 java.util.logging.ConsoleHandler.encoding = utf-8 这行; 更改为 java.util.logging.ConsoleHandler.encoding 阅读全文
posted @ 2021-01-19 22:42 Truman001 阅读(66) 评论(0) 推荐(0) 编辑
摘要: Variadic Templates 基础知识 1 可变参数包,可以很方便的完成recursive function call(递归函数调用) 2 typename... Types || const Types&... args || print(args...) 三个点的位置是语法规定,不必深究 阅读全文
posted @ 2021-01-19 22:39 Truman001 阅读(122) 评论(0) 推荐(0) 编辑