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