摘要:
1.直接调用shell脚本 afterdata=$(date -d +1day "+%Y%m%d") 2.C语言获取后几天time #include <stdio.h> #include <time.h> #include <string.h> int main(int argc,char cons 阅读全文
摘要:
阅读全文
摘要:
<!--more--> //比较数组、vector、array #include <iostream> #include <vector> #include <array> #include <iomanip> using namespace std; int main(void) { /*1.构造 阅读全文
摘要:
1.VS2017 注释:ctrl+K+C 取消注释:ctrl+K+U 2.notepad快速注释:ctrl+k <!--more--> notepad取消注释:ctrl+q 1.VS2017 注释:ctrl+K+C 取消注释:ctrl+K+U 2.notepad快速注释:ctrl+k notepad 阅读全文
摘要:
C/C++获取系统当前时间 C库中与系统时间相关的函数定义在<time.h>头文件中, C++定义在<ctime>头文件中。 一、time(time_t*)函数 函数定义如下: time_t time (time_t* timer); 获取系统当前日历时间 UTC 1970-01-01 00:00: 阅读全文
摘要:
1.标准Makefile文件示例如下: #把.o .C .cxx .cpp .hxx .h添加到后缀列表中。 .SUFFIXES: .o .C .cxx .cpp .hxx .h #设置变量并赋值,方便后面编译链接 CC= g++ -D_LINUX_ -fpermissive -Wall -Wno- 阅读全文
摘要:
1. 截取子串 s.substr(pos, n) 截取s中从pos开始(包括0)的n个字符的子串,并返回 s.substr(pos) 截取s中从从pos开始(包括0)到末尾的所有字符的子串,并返回<!--more--> 2. 替换子串 s.replace(pos, n, s1) 用s1替换s中从po 阅读全文