gpt4 book ai didi

c++ - CRTP 的替代品

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:48:53 25 4
gpt4 key购买 nike

假设我们有以下带有虚方法的类:

struct icountable{
virtual int count() = 0;

bool empty(){
return count() == 0;
}
}

struct list : public icountable {
...
}

现在假设这可以用CRTP 重写。应该看起来或多或少像:

template <typename T> 
struct icountable{
bool empty(){
return static_cast<T*>(this)->count() == 0;
}
}

struct list : public icountable<list> {
...
}

现在假设类本身不需要使用 empty() 方法。然后我们可以这样做:

template <typename T> 
struct icountable : public T{
bool empty(){
return count() == 0;
}
}

struct list_base{
...
}

typedef icountable<list_base> list;

我的问题是针对第三个例子。这就是所谓的traits吗?如果我使用它们有优势/劣势吗?

最佳答案

正如评论所说,这是mix-in概念,你可以找到相关信息here .

性状不同here你可以找到一个基本的例子。

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

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