函数重载可用于实现多态性,即通过基类指针调用派生类方法,编译器根据实际参数类型选择重载版本。示例中,Animal 类定义虚拟 makeSound() 函数,Dog 和 Cat 类重写该函数,通过 Animal* 指针调用 makeSound() 时,编译器会基于指向的对象类型调用相应的重写版本,从而实现多态性。
C 函数重载如何实现多态性
什么是函数重载?
函数重载是一种将多个具有相同名称但参数类型或数量不同的函数定义于同一作用域内的编程技术。
如何使用函数重载实现多态性?
多态性是一种允许通过基类指针或引用调用派生类方法的功能。C 中函数重载与多态性的关系如下:
实战示例
以下代码展示了如何使用函数重载实现多态性:
#include <iostream> class Animal { public: virtual void makeSound() { // 声明为虚函数 std::cout << "Animal sound" << std::endl; } }; class Dog : public Animal { public: void makeSound() override { // 重写 makeSound() std::cout << "Woof woof" << std::endl; } }; class Cat : public Animal { public: void makeSound() override { // 重写 makeSound() std::cout << "Meow meow" << std::endl; } }; int main() { Animal* animalptr; // 基类指针 // 指向 Dog 对象 animalptr = new Dog(); animalptr->makeSound(); // 调用 Dog::makeSound() // 指向 Cat 对象 animalptr = new Cat(); animalptr->makeSound(); // 调用 Cat::makeSound() delete animalptr; return 0; }
输出:
Woof woof Meow meow
以上是C++ 函数重载如何实现多态性?的详细内容。更多信息请关注PHP中文网其他相关文章!