欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

类中的函数重载

程序员文章站 2022-07-01 23:32:28
[TOC] 1. 函数重载回顾 函数重载的本质为相互独立的不同函数 C++通过函数名和函数参数确定函数调用 无法直接通过函数名得到重载函数的入口地址 函数重载必然发生在同一个作用域中 2. 类中的函数重载 类的成员函数可以进行重载,包括 构造函数的重载 普通成员函数的重载 静态成员函数的重载 注意: ......

目录

1. 函数重载回顾

  • 函数重载的本质为相互独立的不同函数
  • c++通过函数名函数参数确定函数调用
  • 无法直接通过函数名得到重载函数的入口地址
  • 函数重载必然发生在同一个作用域中

2. 类中的函数重载

类的成员函数可以进行重载,包括

  • 构造函数的重载
  • 普通成员函数的重载
  • 静态成员函数的重载

注意:函数重载必然发生在同一个作用域中,因此全局函数和类的成员函数无法构成重载。

#include <stdio.h>

class test
{
    int i;
public:
    test()
    {
        printf("test::test()\n");
        this->i = 0;
    }

    test(int i)
    {
        printf("test::test(int i)\n");
        this->i = i;
    }

    test(const test &obj)
    {
        printf("test(const test& obj)\n");
        this->i = obj.i;
    }

    static void func()
    {
        printf("void test::func()\n");
    }

    void func(int i)
    {
        printf("void test::func(int i), i = %d\n", i);
    }

    int geti()
    {
        return i;
    }
};

void func()
{
    printf("void func()\n");
}

void func(int i)
{
    printf("void func(int i), i = %d\n", i);
}

int main()
{
    func();        // void func()
    func(1);       // void func(int i), i = 1

    test t;        // test::test()
    test t1(1);    // test::test(int i)
    test t2(t1);   // test(const test& obj)

    func();        // void func()
    test::func();  // void test::func()

    func(2);       // void func(int i), i = 2;
    t1.func(2);    // void test::func(int i), i = 2
    t1.func();     // void test::func()

    return 0;
}

类中的函数重载

重载的意义

  • 通过函数名对函数功能进行提示
  • 通过参数列表对函数用法进行提示
  • 扩展系统中已经存在的函数功能
#include <stdio.h>
#include <string.h>

char *strcpy(char *buf, const char *str, unsigned int n)
{
    return strncpy(buf, str, n);
}

int main()
{
    const char *s = "d.t.software";
    char buf[8] = {0};

    strcpy(buf, s, sizeof(buf) - 1);

    printf("%s\n", buf);

    return 0;
}

类中的函数重载