上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: #include <iostream> #include <windows.h> #include <string> using namespace std; void test(int n,char ch='$') { //可以在此指定默认参数 for (int i = 1; i <= n; i+ 阅读全文
posted @ 2022-08-28 15:18 wshidaboss 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1.函数的作用:避免重复制造轮子。(避免重复多次写相同的代码) 2.函数的缺点: 每调用一次函数,就会为这个函数分配一个“栈”, 在计算机底层做很多准备工作(保护原来的执行环境,切换到新的执行环境) 有一定的“时间开销”。 3.解决方案:使用内联函数。 内联函数: 当编译器在编译时, 如果遇到内联函 阅读全文
posted @ 2022-08-26 19:56 wshidaboss 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 当调用一个函数时,就会在栈空间为这个函数分配一块内存区域,这块内存区域叫做“栈帧”,专门给这个函数使用。 在调用函数时要避免栈空间溢出,否则将会引起程序异常。 示例一: #include <iostream> #include <windows.h> using namespace std; voi 阅读全文
posted @ 2022-08-25 21:13 wshidaboss 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 1.C++可以使用同名函数[重载函数]实现功能类似的多个不同函数,C语言不支持函数重载; 2.函数名重载即函数名相同,但是, 函数的参数(形参)绝不相同: 1)参数个数不同; 2)或参数的类型不同。 3.只有返回类型不同,不能构成函数重载;只有形参变量名不同, 也不能构成函数重载. #include 阅读全文
posted @ 2022-08-23 23:03 wshidaboss 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1.C++支持函数的默认参数,C 语言不支持; 2.默认参数只能放在最后面。 #include <iostream> #include <windows.h> #include <string> using namespace std; void scorePrint(int score[], in 阅读全文
posted @ 2022-08-23 21:50 wshidaboss 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 1.一个指针在32位操作系统上占4个字节,在64位操作系统上占8个字节,但是,编译器为了兼容32位操作系统和64位操作系统,所以指针都是4个字节长度。 下面程序中的形参本质上是一个指针,所以无论定义了几个参数都只能传递四个字节。 #include <iostream> #include <windo 阅读全文
posted @ 2022-08-23 12:39 wshidaboss 阅读(2985) 评论(0) 推荐(0) 编辑
摘要: 1.创建自己的cpp文件: 2.创建自己的头文件: 3.在源文件中引用头文件: 阅读全文
posted @ 2022-08-23 11:18 wshidaboss 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <Windows.h> #include <string> #include <conio.h> //getch使用 #include "hacker.h" using namespace std; #define WIDTH 40 #def 阅读全文
posted @ 2022-08-22 23:17 wshidaboss 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 函数的调用和声明: 1.确定函数的功能; 2.确定函数的参数; 3.确定函数的返回值; 4.确定函数名; 5.函数的实现。 1.简单的函数调用: #include <iostream> using namespace std; int sum(int n) { //函数的定义 n表示形参 int s 阅读全文
posted @ 2022-08-22 22:46 wshidaboss 阅读(416) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <string> #include <windows.h> #define WIDTH 40 #define HEIGHT 15 using namespace std; void init() { //初始化终端界面 char cmd[128 阅读全文
posted @ 2022-08-16 23:07 wshidaboss 阅读(398) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页