摘要:
1.函数重载的原理是在汇编时,给各个函数取别名,C语言不能重载的原因是没有取别名 2.生成汇编文件:gcc -S test.c -o test.s g++ -S test.cpp -o test2.s 3.查看内容:type 文件名 参考资料 参考资料来源于黑马程序员等 阅读全文
摘要:
1.函数重载是:允许函数名相同,这种现象叫函数重载 2.函数重载的作用:是为了方便使用函数名 3.函数重载的条件:同一个作用域,参数的个数不同,参数的顺序不同,参数的类型不同 //参数的个数不同 void func() { cout << "func()" << endl; } void func( 阅读全文
摘要:
//2022年8月24日09:41:18 #include <iostream> using namespace std; #include <string> class Maker { public://公有权限 void set(string Name, int Id) { id = Id; n 阅读全文