类中的函数重载
函数重载的回顾
1、函数重载的本质就是为相互独立的不同函数;
2、C++中通过函数名和函数参数确定函数调用;
3、无法直接通过函数名得到重载函数的入口地址;
4、函数重载必然发生在同一个作用域中。
类中的重载
1、类中的成员函数可以进行重载;
--构造函数的重载;
--普通成员函数的重载;
--静态成员函数的重载。
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();
func(1);
Test t;
Test t1(1);
Test t2(t1);
func();
Test::func();
func(2);
t1.func(2);
t1.func();
return 0;
}
重载的意义
1、通过函数名对函数功能进行提示;
2、通过参数列表对函数用法进行提示;
3、扩展系统中已经存在的函数功能。
#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;
}
小结
1、类的成员函数之间可以进行重载;
2、重载必须发生在同一个作用域;
3、全局函数和成员函数不能构成重载关系;
4、重载的意义在于扩展已经存在的功能。