• 【C++入门】命名空间&缺省参数&函数重载&引用


    1.C++兼容C的语法

    1. //C++兼容C的语法
    2. //C语言版本hello world
    3. #include<stdio.h>
    4. int main()
    5. {
    6. printf("hello world\n");
    7. return 0;
    8. }
    9. //C++版本hello world
    10. #include<iostream>
    11. using namespace std;
    12. int main()
    13. {
    14. cout << "hello world" << endl;
    15. return 0;
    16. }

    2.using namespace std的作用:解决C语言中变量命名冲突的问题 

    2-1namespace的由来

    1. #include<stdio.h>
    2. int main()
    3. {
    4. int scanf = 10;//对
    5. int strlen = 20;//对
    6. //C语言中标识符命名的两个点:1.不能以数字,下划线开头 2.不能和关键字名字一样(但可以是函数名)
    7. printf("%d", scanf);//对
    8. printf("%d\n", strlen);//对
    9. scanf("%d", &scanf);//错
    10. //本意是第一个scanf用stdio.h里的库函数,第二个scanf用int类型的变量
    11. //但是C语言的局部优先原则,这里的两个scanf都是int类型的变量,所以出错
    12. //小结:如果我就是想要达成我的本意的这个目的,C语言明显做不到(有命名冲突的问题),所以C++就使用namespace命名空间域来完善C
    13. }

    这是将int scanf=10;放在了局部,定义int scanf的时候还是可以的,但是在使用scanf("%d",&scanf);时出现错误;但是如果将scanf放在全局,连定义 都不被允许。namespace的使用:

    2-2namespace的使用:

    1. #include<iostream>
    2. //定义的是一个命名空间域:(变量和函数构成)
    3. namespace song
    4. {
    5. //变量
    6. int scanf = 1;
    7. int strlen = 2;
    8. //函数
    9. int add(int a, int b)
    10. {
    11. return a + b;
    12. }
    13. }
    14. int main()
    15. {
    16. //默认访问的是先局部后全局(局部没有则采用局部的)
    17. printf("%x\n", scanf);
    18. printf("%x\n", strlen);
    19. //指定访问song命名空间域
    20. printf("%x\n", song::scanf);
    21. printf("%x\n", song::strlen);
    22. printf("%d\n", song::add(10,20));
    23. }

    ::是域作用限定符,限定是属于哪一个域的变量或者函数

    常见的域有:局部域,全局域,命名空间域,类域 

    1. #include<iostream>
    2. //全局域
    3. int a = 10;
    4. //命名空间域可以嵌套
    5. namespace song
    6. {
    7. int a = 20;
    8. namespace huang
    9. {
    10. int a = 30;
    11. }
    12. namespace chen
    13. {
    14. int a = 40;
    15. }
    16. }
    17. //类域
    18. class stu
    19. {
    20. public:
    21. int a = 50;
    22. };
    23. int main()
    24. {
    25. printf("默认先局部后全局(局部没有,全局有):a=%d\n", a);
    26. printf("指定song命名空间域:a=%d\n", song::a);
    27. printf("指定song命名空间域里的haung命名空间域:%d\n", song::huang::a);
    28. printf("指定song命名空间域里的chen命名空间域:%d\n", song::chen::a);
    29. stu s;
    30. printf("类域:%d\n", s.a);
    31. return 0;
    32. }

     

    备注:

    • 同一个项目的不同文件里 可以使用相同名称的命名空间域,编译链接时会自动合并
    •  但是在同一个域中不能定义相同的标识符

    3.使用标准库或自己定义的命名空间里的东西的三种方式:

    1. #include<iostream>
    2. int main()
    3. {
    4. //要使用标准库里的东西,有三种方式:
    5. //方式1:每一个都指定命名空间
    6. //麻烦但是最标准
    7. std::cout << "hello world1" << std::endl;
    8. //方式2:整个东西都在全局展开,一夜回到解放前
    9. //方便,但是当我们自己定义的和标准库里的东西名字相同,发生命名冲突的时候就没办法解决了
    10. using namespace std;
    11. cout << "hello world2" << endl;
    12. //方式3:折中办法,对于标准库中的部分常用进行展开
    13. using std::cout;
    14. using std::endl;
    15. cout << "hello world3" << endl;
    16. return 0;
    17. }

    给大家看看使用自己定义的东西也是有三种方式 :

     4.C++中的输入和输出

    cout现在讲不清楚,我们的储备知识还不够,先记住使用即可

    1. //ostream 类型全局对象 cout
    2. //istream 类型全局变量 cin
    3. //endl 全局的换行符号
    4. #include<iostream>
    5. using namespace std;
    6. int main()
    7. {
    8. int a = 0;
    9. cin >> a;
    10. //自动识别类型:原理就是函数重载和运算符重载
    11. cout << a<< endl<< &a << endl;
    12. return 0;
    13. }

    5.缺省参数(缺省==不省==写上)

    缺省参数是指在声明和定义函数的时候为函数的参数设定一个默认值,在函数调用的时候,如果没有指定实参则采用该默认值.(备胎)

    5-1缺省参数的分类

    1. #include<iostream>
    2. using namespace std;
    3. //缺省参数的分类
    4. //1:全缺省
    5. void test1(int a=10, int b=20, int c=30)
    6. {
    7. cout << a << endl;
    8. cout << b << endl;
    9. cout << c << endl << endl;
    10. }
    11. //2:半缺省
    12. //部分缺省-必须从右往左连续缺省
    13. void test2(int a , int b , int c =10)
    14. {
    15. cout << a << endl;
    16. cout << b << endl;
    17. cout << c << endl;
    18. }
    19. int main()
    20. {
    21. test1(1, 2, 3);
    22. test2(1, 2);//实参个数>=没缺省的参数个数
    23. return 0;
    24. }

     缺省参数的意义:(举例说明)

    1. #include<iostream>
    2. typedef struct Stack
    3. {
    4. int* a;
    5. int size;
    6. int capacity;
    7. }Stack;
    8. //老版本:
    9. //void InitStack(Stack* ps)
    10. //{
    11. // ps->a = (int*)malloc(sizeof(int) * 4);
    12. // ps->size = 0;
    13. // ps->capacity = 4;
    14. //}
    15. //新版本:
    16. void InitStack(Stack* ps, int capacity=4)
    17. {
    18. ps->a = (int*)malloc(sizeof(int) * capacity);
    19. ps->size = 0;
    20. ps->capacity = capacity;
    21. }
    22. int main()
    23. {
    24. //假设我知道栈内至少需要存100个数据
    25. //如果现在将上面的capacity写成100,下面我ST2就没办法使用了
    26. //如果现在将上面的capacity写成10,在这里就要扩容,扩容是有时间成本的
    27. Stack ST1;
    28. //老版本:InitStack(&ST1);
    29. //新版本:
    30. InitStack(&ST1, 100);//传了,使用传的100
    31. //假设我知道栈内至少需要存10个数据
    32. Stack ST2;
    33. //老版本:InitStack(&ST2);
    34. InitStack(&ST2, 10);//传了,使用传的10
    35. //假设我不知道栈内至少需要存多少个数据
    36. Stack ST3;
    37. InitStack(&ST3);//不传,使用备用的4
    38. return 0;
    39. }

    备注: 缺省参数不能在函数声明和定义中同时出现,否则就会报错

    最好是在声明时写缺省,也就是下面这样

    1. void InitStack(Stack* ps, int capacity = 4);//声明缺省
    2. int main()
    3. {
    4. //业务需求;
    5. return 0;
    6. }
    7. //新版本:
    8. void InitStack(Stack* ps, int capacity)//定义不缺省
    9. {
    10. ps->a = (int*)malloc(sizeof(int) * capacity);
    11. ps->size = 0;
    12. ps->capacity = capacity;
    13. }

    6. 函数重载

    函数重载的定义:C++中支持两个函数名相同,但是函数的参数(参数的个数或者类型)要不同 

    1. C语言中一个项目中不允许出现同名函数
    2. C++中的函数重载允许一个项目中出现同名函数
    1. #include<iostream>
    2. using namespace std;
    3. int Add(int a, int b)
    4. {
    5. return a + b;
    6. }
    7. char Add(char a, char b)
    8. {
    9. return a + b;
    10. }
    11. double Add(double a, double b)
    12. {
    13. return a + b;
    14. }
    15. float Add(float a, float b)
    16. {
    17. return a + b;
    18. }
    19. int Add(int a, int b, int c)
    20. {
    21. return a + b + c;
    22. }
    23. int main()
    24. {
    25. cout << Add(1, 1) << endl;
    26. cout << Add('1', '1') << endl;//函数参数的类型构成重载
    27. cout << Add(1.1, 1.1)<< endl;//函数参数的类型构成重载//!!!备注:如果没强转或者备注,1.1默认就是double类型
    28. cout << Add((float)1.1, (float)1.1)<< endl;//函数参数的类型构成重载//强转
    29. //cout << Add(1.1f, 1.1f)<< endl;//函数参数的类型构成重载//备注
    30. cout << Add(1, 1, 1) << endl;//函数参数的个数构成重载
    31. return 0;
    32. }

    这样写简直是为难编译器了!!哈哈🐼 

     

    思考:难怪C语言为什么不写交换函数和排序函数的库函数,那是因为C语言不支持函数重载,要还得像qsort一样,一个一个字节地交换,但是这样很不方便。

    6-1.面试题:

    1. 为什么C语言支持函数重载,而C++支持函数重载?
    2. extern "C'的作用

    6-1-1.为什么C语言不支持重载,C++支持?C++是如何支持的?---函数名修饰规则不同

    备注:这里由于博主还没有干到LInux,就不能给大佬们演示linux下函数名修饰规则的具体内容了:

    C 语言中:

    C++中: 

     

     6-1-2.extern "C'的作用

    7.引用

    1. #include<iostream>
    2. int main()
    3. {
    4. int a = 10;
    5. int& b = a;//b是a的别名,b是a的引用
    6. printf("%d\n", b);
    7. b = 100;
    8. printf("%d\n", a);
    9. }

     注意:int& b=a;是取别名

    而int* b=&a;是取地址

    1. #include<iostream>
    2. using namespace std;
    3. void Swap(int* m, int* n)
    4. {
    5. int temp = *m;
    6. *m = *n;
    7. *n = temp;
    8. }
    9. void Swap(int& m, int& n)
    10. {
    11. int temp = m;
    12. m = n;
    13. n = temp;
    14. }
    15. int main()
    16. {
    17. int a = 10;
    18. int b = 20;
    19. //传地址交换
    20. Swap(&a, &b);
    21. printf("a=%d\tb=%d\n", a, b);
    22. //传引用交换
    23. Swap(a, b);
    24. printf("a=%d\tb=%d\n", a, b);
    25. return 0;
    26. }

    ​​​​​​​

     

  • 相关阅读:
    一张照片一键换脸:无需数据集和训练 | 开源日报 No.186
    [java]java读取excel
    一文看懂这些海外社媒平台属性,跨境外贸必看
    5256C 5G终端综合测试仪
    Element Plus Table 表格 单元格内容过长处理
    【MEIF:ℓ1-ℓ0混合分解】
    深入浅出图神经网络【阅读笔记】
    5年测试经验之谈:2年功能测试、3年自动化测试,从入门到25k...
    C# GDI 绘制饼图
    HMS Core机器学习服务实现同声传译,支持中英文互译和多种音色语音播报
  • 原文地址:https://blog.csdn.net/qq_64428099/article/details/125534855