gpt4 book ai didi

c++ - 使方法在接口(interface)中公开但在实现中 protected 优点是什么?

转载 作者:太空狗 更新时间:2023-10-29 19:54:53 26 4
gpt4 key购买 nike

在我的 C++ 应用程序中,我有一个如下所示的界面:

class ICalculator
{
public:
virtual double calculateValue(double d) = 0;
};

我有这个接口(interface)的实现,如下所示:

class MySpecificCalculator
{
public:
virtual double calculateValue(double d);
};

现在我的同事对此提示并告诉我最好保护 calculateValue 方法。这样,我们可以保证调用者始终通过接口(interface)而不是直接实现传递。

这是一个正确的观察吗?保护接口(interface)的实现真的更好吗?或者我们甚至不能将其设为私有(private)?

最佳答案

您的同事是对的。

Never make virtual functions public.

Guideline #1: Prefer to make interfaces nonvirtual, using Template Method.

Guideline #2: Prefer to make virtual functions private.

Guideline #3: Only if derived classes need to invoke the base implementation of a virtual function, make the virtual function protected.

For the special case of the destructor only:

Guideline #4: A base class destructor should be either public and virtual, or protected and nonvirtual.

关于c++ - 使方法在接口(interface)中公开但在实现中 protected 优点是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4142562/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com