⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statcast.cpp

📁 数值计算工具库,C语言编写的,可以直接调用.
💻 CPP
字号:
// static_cast

#include <typeinfo>

class Dog {
public:
    Dog() { }
    virtual void fetch() = 0;
};

class Dalmation : public Dog {
public:
    Dalmation() { }
    virtual void fetch();
};

void Dalmation::fetch()
{
}

void foo(Dalmation&)
{ }

int main()
{
    Dalmation cairo;
    Dog& dog = cairo;

    Dalmation& spotted = static_cast<Dalmation&>(dog);
    foo(spotted);

    return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -