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中文网其他相关文章!