摘要:
Qt错误提示 virtual void * __cdecl PopDialogManger::qt_metacast(char const*)"(?qt_metacast@PopDialogManger) virtual int __cdecl PopDialogManager::qt_metaca 阅读全文
摘要:
地址: https://studiostyl.es/ 用法: 工具->导入和导出设置->导入选定的环境设置->是,保存我当前的设置->选择下载的主题文件,完成。 阅读全文
摘要:
地址 地址 说明 选择适合自己的,下载,双击安装,就可使用了 阅读全文
摘要:
头文件 #include <algorithm> 例子 下面的代码, 将字符串中的 /替换为\ std::string str("C:/demo/log/head/send"); std::replace(str.begin(), str.end(), '/', '\\'); 输出 阅读全文
摘要:
头文件 #include <Windows.h> 函数 函数已经写好了 std::string get_executable_dir_() { char path[255] = { 0 }; GetModuleFileName(NULL, path, 255); (strrchr(path, '\\ 阅读全文
摘要:
完整源码 #include <sys/statfs.h> #include <string> #include <iostream> #include <limits.h> #include <stdio.h> #include <string.h> #include <unistd.h> /// 阅读全文
摘要:
代码 #include <sys/statfs.h> #include <string> #include <iostream> #include <limits.h> #include <stdio.h> #include <string.h> #include <unistd.h> /// ge 阅读全文
摘要:
概述 本文演示环境: win10 + vs2017 日志,我用的很少,通常是用作动态库调试使用。 日志记录下来,基本就没看过,除非模块出现了问题。 使用cmake管理的项目 使用C++封装了C语言读写文件实现了的记录日志, 避免使用c++流,因为效率低。 默认是写文本文件,其他格式? 以后再开放接口 阅读全文
摘要:
头文件 #include <algorithm> transform 函数 转大写 std::string str_write; // 全部转为大写 std::transform(str_write.begin(), str_write.end(), str_write.begin(), toupp 阅读全文
摘要:
头文件 #include <windows.h> #include <wtypes.h> 函数 GetDiskFreeSpaceExA 获取剩余可用空间 /// 得到盘符, 例如: "C:\\" std::string str_disk_name = log_info_.path_.substr(0 阅读全文