C++重载




重载是C++新增的机制,将语义和功能相似的函数用同一个名字表示,提高函数的通用性。

重载

特征:
(1)相同范围
(2)函数名相同
(3)参数不同
(4)virtual可有可无
全局函数和成员函数即使名称和参数相同,两者也是互不干扰。
在同一范围内,各种参数类型的MyPrint函数都可以直接调用,只要明确实参的类型即可。

#include <iostream>
using namespace std;

void MyPrint(int num)
{
   
  cout << "int: " << num << endl;
}

void MyPrint(float num)
{
   
  cout << "float: " << num << endl;
}

class Test
{
   
  public:
         void MyPrint(int num) {
   cout << "class int: " << num << endl;}
         void MyPrint(float num) {
   cout << "class float: " << num << endl;}
         void MyPrint(char num) {
   cout << "class char: " << num << endl;}
};

int main(void)
{
   
  MyPrint(1); // int: 1
  MyPrint(1.1f); // float: 1 浮点型必须要显式类型,否则编译器不知道该转换为int还是float。
  Test test1;
  test1.MyPrint(2); // class int: 2
  test1.<
  • 12
    点赞
  • 42
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值