c++ 的优势是什么?具有与接口方法具有完全相同签名的静态方法的类

发布于 2024-11-19 16:52:17 字数 233 浏览 1 评论 0原文

定义与实现它的类中的接口方法具有完全相同签名的静态方法有什么好处。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

静若繁花 2024-11-26 16:52:17

使用这种静态方法没有任何优势。 静态方法不会覆盖虚拟方法(它们始终是非静态)。

事实上,它有缺点,即您无法实现实际的方法来重写基本方法。因为一个中不能有相同的方法签名(一个静态和另一个非静态)。

class Impl :IInterface
{
public :
~Impl();
staic void fn();
void fn() {} // error: invalid (can't have same signature)
};

There is no advantage of having such static method. static methods don't override virtual 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 (one static and another non-static).

class Impl :IInterface
{
public :
~Impl();
staic void fn();
void fn() {} // error: invalid (can't have same signature)
};
迟到的我 2024-11-26 16:52:17

没有什么优势。

您的派生类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 the this pointer, because they are not specific to any object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文