C++的多態(tài)性是通過(guò)虛函數(shù)(virtual function)實(shí)現(xiàn)的,它允許我們通過(guò)基類指針或引用來(lái)調(diào)用派生類的成員函數(shù)。這樣,當(dāng)我們需要添加新的派生類時(shí),只需要實(shí)現(xiàn)新的派生類并重寫(xiě)虛函數(shù),而不需要修改已有的代碼。這有助于提高代碼的擴(kuò)展性。
以下是如何使用多態(tài)性提高C++代碼擴(kuò)展性的幾個(gè)建議:
class Base {
public:
virtual void foo() {
// 默認(rèn)實(shí)現(xiàn)
}
};
class Derived1 : public Base {
public:
void foo() override {
// Derived1 的實(shí)現(xiàn)
}
};
class Derived2 : public Base {
public:
void foo() override {
// Derived2 的實(shí)現(xiàn)
}
};
int main() {
Base* basePtr = new Derived1();
basePtr->foo(); // 調(diào)用 Derived1 的 foo 函數(shù)
delete basePtr;
basePtr = new Derived2();
basePtr->foo(); // 調(diào)用 Derived2 的 foo 函數(shù)
delete basePtr;
return 0;
}
class Base {
public:
virtual void foo() = 0; // 純虛函數(shù)
};
class Derived1 : public Base {
public:
void foo() override {
// Derived1 的實(shí)現(xiàn)
}
};
class Derived2 : public Base {
public:
void foo() override {
// Derived2 的實(shí)現(xiàn)
}
};
class IShape {
public:
virtual ~IShape() = default;
virtual double area() const = 0;
};
class Circle : public IShape {
public:
Circle(double radius) : radius_(radius) {}
double area() const override {
return 3.14 * radius_ * radius_;
}
private:
double radius_;
};
class Rectangle : public IShape {
public:
Rectangle(double width, double height) : width_(width), height_(height) {}
double area() const override {
return width_ * height_;
}
private:
double width_;
double height_;
};
總之,C++的多態(tài)性有助于提高代碼的擴(kuò)展性,因?yàn)樗试S我們?cè)诓恍薷囊延写a的情況下添加新的派生類。為了充分利用多態(tài)性,我們應(yīng)該使用基類指針或引用操作派生類對(duì)象,使用純虛函數(shù)強(qiáng)制派生類提供特定的實(shí)現(xiàn),以及使用接口定義一組相關(guān)功能。