摘要:
#Code-C++-Linux-获取时间time()/localtime()/gettimeofday() #include <iostream> //#include <time.h> #include <sys/time.h> //for gettimeofday() #include <str 阅读全文
摘要:
#Code-C++-fstream-输出到文件 利用fstream文件流输出 利用stat查看文件大小 设定文件最大值宏定义 #include <fstream> #include <string> #include <sys/stat.h> #include <iostream> #define 阅读全文
摘要:
#C++-C11-chrono-获取当前时间、获取阶段时间 Linux下使用C++11的chrono库获取时间。 #include <chrono> #include <thread> #include <iostream> int64_t getCurrentLocalTimeStamp(){ s 阅读全文