标签:访问修饰符 函数 ted write fun 不同的 base ace 报错
重载从overload翻译过来,是指同一可访问区内被声明的几个具有不同参数列表(参数的类型,个数,顺序不同)的同名函数,根据参数列表确定调用哪个函数,重载不关心函数返回类型。
int test(); int test(int a); int test(int a,double b); int test(double a,int a); int test(string s); ...
重写翻译自override,是指派生类中存在重新定义的函数。其函数名,参数列表,返回值类型,所有都必须同基类中被重写的函数一致。只有函数体不同(花括号内),派生类调用时会调用派生类的重写函数,不会调用被重写函数。重写的基类中被重写的函数必须有virtual修饰。
class Base { public: void test(int a) { cout<<"this is base"<<endl; } }; class Ship:public Base { public: void test(int a) { cout<<"this is Base overwrite function"<<endl; } };
隐藏是指派生类的函数屏蔽了与其同名的基类函数。注意只要同名函数,不管参数列表是否相同,基类函数都会被隐藏。
#include <iostream> using namespace std; class Base { public: virtual void test(int a)//有virtual关键字,参数列表不同 { cout<<"this is base there are different parameters with virtual"<<endl; } void test1() { cout<<"this is base with the same parameters with not virtual"<<endl; } virtual void test2() { cout<<"this is base with the same parameters with virtual"<<endl; } }; class Ship:public Base { public: void test() { cout<<"this is Ship there are different parameters with virtual cover"<<endl; } void test1() { cout<<"this is Ship with the same parameters with not virtual cover"<<endl; } void test2() { cout<<"this is Ship with the same parameters with virtual cover"<<endl; } }; int main() { Ship s; s.test(); s.test1(); s.test2(); return 0; }
重载和重写的区别
隐藏和重写,重载的区别
标签:访问修饰符 函数 ted write fun 不同的 base ace 报错
原文地址:https://www.cnblogs.com/tianzeng/p/9775672.html