首页 > 后端开发 > C++ > C 函数可以同时是静态函数和虚拟函数吗?

C 函数可以同时是静态函数和虚拟函数吗?

Barbara Streisand
发布: 2024-11-01 00:21:28
原创
789 人浏览过

Can C   Functions Be Both Static and Virtual?

C 函数可以同时是静态和虚拟的吗?

虽然看起来可能需要一个既是静态又是虚拟的成员函数, C 没有提供直接的方法来实现这一点。虽然将函数声明为静态虚拟成员()将导致编译错误,但还有其他方法可以模拟所需的行为:

实现非静态虚拟函数:

最直接的解决方案是创建一个非静态虚函数。这允许在实例和类上调用该函数:

<code class="cpp">struct Object
{
    virtual const TypeInformation& GetTypeInformation() const;
};

struct SomeObject : public Object
{
    virtual const TypeInformation& GetTypeInformation() const;
};</code>
登录后复制

冗余静态非虚拟函数:

如果调用特定派生类的版本非 -实际上不需要对象实例,可以提供冗余静态非虚函数:

<code class="cpp">struct Object
{
    virtual const TypeInformation& GetTypeInformation() const;
    
    static const TypeInformation& GetTypeInformation(const Object&);
};

struct SomeObject : public Object
{
    virtual const TypeInformation& GetTypeInformation() const;
    
    static const TypeInformation& GetTypeInformation(const SomeObject&);
};</code>
登录后复制

函数和常量方法:

另一种选择是使用每个类都有单独的函数和常量:

<code class="cpp">struct Object
{
    const TypeInformation& GetTypeInformation() const;
    static const TypeInformation& GetClassTypeInformation();
};

struct SomeObject : public Object
{
    const TypeInformation& GetTypeInformation() const;
    static const TypeInformation& GetClassTypeInformation();
};</code>
登录后复制

结论:

而 C 本身不支持静态虚成员、非静态虚函数或冗余静态函​​数提供可行的替代方案来实现类似的功能。方法的选择取决于应用程序的具体要求。

以上是C 函数可以同时是静态函数和虚拟函数吗?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板