日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:52000
  • 待審:37
  • 小程序:12
  • 文章:1037587
  • 會員:756

虛函數(shù)是一種多態(tài)性機制,允許派生類覆蓋其基類的成員函數(shù):聲明:在函數(shù)名前加上關(guān)鍵字 virtual。調(diào)用:使用基類指針或引用,編譯器將動態(tài)綁定到派生類的適當(dāng)實現(xiàn)。實戰(zhàn)案例:通過定義基類 shape 及其派生類 rectangle 和 circle,展示虛函數(shù)在多態(tài)中的應(yīng)用,計算面積和繪制形狀。

C++ 中的虛函數(shù)

虛函數(shù)是一種多態(tài)性機制,允許派生類覆蓋其基類的成員函數(shù)。這使程序員能夠在基類中定義通用的行為,同時仍然允許派生類為該行為提供特定于其實例的實現(xiàn)。

聲明虛函數(shù)

要聲明一個虛函數(shù),請在函數(shù)名的開頭放置關(guān)鍵字 virtual。例如:

class Base {
public:
    virtual void print() const;
};

登錄后復(fù)制

調(diào)用虛函數(shù)

調(diào)用虛函數(shù),使用基類指針或引用。編譯器將動態(tài)綁定到派生類的適當(dāng)實現(xiàn)。例如:

void doSomething(Base* base) {
    base->print();
}

登錄后復(fù)制

實戰(zhàn)案例

下面是一個使用虛函數(shù)的示例:

#include <iostream>

class Shape {
public:
    virtual double area() const = 0;
    virtual void draw() const = 0;
};

class Rectangle : public Shape {
public:
    Rectangle(double width, double height) : width_(width), height_(height) {}
    
    double area() const override { return width_ * height_; }
    void draw() const override { std::cout << "Drawing rectangle" << std::endl; }
    
private:
    double width_;
    double height_;
};

class Circle : public Shape {
public:
    Circle(double radius) : radius_(radius) {}
    
    double area() const override { return 3.14 * radius_ * radius_; }
    void draw() const override { std::cout << "Drawing circle" << std::endl; }
    
private:
    double radius_;
};

int main() {
    Shape* rectangle = new Rectangle(5, 10);
    Shape* circle = new Circle(5);
    
    std::cout << rectangle->area() << std::endl; // Output: 50
    std::cout << circle->area() << std::endl;   // Output: 78.5
    
    rectangle->draw();   // Output: Drawing rectangle
    circle->draw();     // Output: Drawing circle
    
    return 0;
}

登錄后復(fù)制

分享到:
標(biāo)簽:C++ 虛函數(shù)
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 52000

    網(wǎng)站

  • 12

    小程序

  • 1037587

    文章

  • 756

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運動步數(shù)有氧達(dá)人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定