c++ 的优势是什么?具有与接口方法具有完全相同签名的静态方法的类
定义与实现它的类中的接口方法具有完全相同签名的静态方法有什么好处。
class IInterface
{
public:
virtual void fn()=0;
}
class Impl :IInterface
{
public:
~Impl();
static void fn();
}
Impl::~Impl{
}
Impl::fn(){
//do something
}
What is the advantage of defining static methods with exact same signature as the interface method in the class which implements it .
class IInterface
{
public:
virtual void fn()=0;
}
class Impl :IInterface
{
public:
~Impl();
static void fn();
}
Impl::~Impl{
}
Impl::fn(){
//do something
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用这种
静态
方法没有任何优势。静态
方法不会覆盖虚拟
方法(它们始终是非静态
)。事实上,它有缺点,即您无法实现实际的方法来重写基本方法。因为一个
类
中不能有相同的方法签名(一个静态
和另一个非静态
)。There is no advantage of having such
static
method.static
methods don't overridevirtual
methods (which are always non-static
).In fact it has disadvantage, that you cannot implement the actual method to override the base method. Because one cannot have same method signature in a single
class
(onestatic
and another non-static
).没有什么优势。
您的派生类
Impl
仍然是一个抽象类,因为它不做&无法重写纯虚函数。您无法创建它的任何对象。静态函数无法重写基类中的虚函数,因为动态多态性使用
this
在运行时评估函数调用,而静态函数不传递this
指针,因为它们不特定于任何对象。There is no advantage.
Your derived class
Impl
still is as an Abstract class since it does'nt & can't override the pure virtual function. You cannot create any objects of it.A static function cannot override a virtual function from Base class because dynamic polymorphism uses the
this
to evaluate the function call at run time, while static functions do not pass thethis
pointer, because they are not specific to any object.