09 2018 档案

只有注册用户登录后才能阅读该文。
posted @ 2018-09-08 02:05 scott_h 阅读(4) 评论(0) 推荐(0) 编辑
摘要:"c++17 filesystem, regex 遍历目录" cpp include include include include include //linux 精确度s, us gettimeofday() include include include using namespace std 阅读全文
posted @ 2018-09-05 03:29 scott_h 编辑
摘要:"Linux(C/C++)下的文件操作open、fopen与freopen" open是linux下的底层系统调用函数,fopen与freopen c/c++下的标准I/O库函数,带输入/输出缓冲。 linxu下的fopen是open的封装函数,fopen最终还是要调用底层的系统调用open。 所以 阅读全文
posted @ 2018-09-04 19:32 scott_h 阅读(1918) 评论(0) 推荐(0) 编辑
摘要:"Linux时钟精度:毫秒?微妙?纳秒?" 阅读全文
posted @ 2018-09-04 18:07 scott_h 阅读(1239) 评论(0) 推荐(0) 编辑
摘要:linux 遍历目录+文件(优化版本) windows原生API 遍历版本(当年受了不少折磨) c++17 FS 还是挺好用的, VS2017支持,但是linux g++7.3 还是不支持 filesystem #include<filesystem> #include<regex> //正则表达式 阅读全文
posted @ 2018-09-03 23:01 scott_h 阅读(3473) 评论(2) 推荐(0) 编辑
摘要:preview /MD, /MT, /LD (Use Run-Time Library) #windows创建和调用静态库 Walkthrough: Create and use a static library // MathFuncsLib.h namespace MathFuncs { cla 阅读全文
posted @ 2018-09-02 05:30 scott_h 阅读(476) 评论(0) 推荐(0) 编辑