摘要:
使用内联函数就相当于是使用lamdba函数,对于函数的命令指令直接进行替换 #include<iostream> #include<cstdlib> using namespace std; #define f(x) x*x*x; //C语言内联, c++严格要求类型 inline int get( 阅读全文
摘要:
1.断言(assert) #include<iostream> #include<cassert> using namespace std; //区别用指针的大小 int divv(int a, int b) { assert(b != 0); //断言 return a / b; } int ma 阅读全文