gpt4 book ai didi

c++ - CRTP 类示例

转载 作者:行者123 更新时间:2023-11-27 22:58:37 30 4
gpt4 key购买 nike

来自 wikipedia :

template <class T> 
struct Base
{
void interface()
{
// ...
static_cast<T*>(this)->implementation();
// ...
}

static void static_func()
{
// ...
T::static_sub_func();
// ...
}
};

struct Derived : Base<Derived>
{
void implementation();
static void static_sub_func();
};

看来我们将仅在 interface() 函数中使用 implementation()。那么,为什么我们不将 implementation() 声明为 private 函数呢?

最佳答案

如果您将implementation() 私有(private),那么基类将无法访问它。为了使其能够访问它,您必须使基类成为派生类的友元:

struct Derived : Base<Derived>
{
static void static_sub_func();

private:

friend class Base<Derived>; //make base friend

void implementation();

};

希望对您有所帮助。

关于c++ - CRTP 类示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30023249/

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