摘要:
自定义函数的写法 1 #include <iostream> 2 using namespace std; 3 int sum(int,int); //函数原型,可以省略变量名,以分号结尾。 4 int main() 5 { 6 int result = sum(5,6); //调用函数实现 7 c 阅读全文
摘要:
使用引用实质还是指针,使用引用的好处: 可以更加简洁的书写代码 可以直接传递某个对象,而不只是把对象复制一份。 1 #include <iostream> 2 using namespace std; 3 void swap1(int,int); 4 void swap2(const int&, c 阅读全文