gpt4 book ai didi

c++ - 如何在编译时检测基类的模板参数(错误)?

转载 作者:可可西里 更新时间:2023-11-01 18:37:13 25 4
gpt4 key购买 nike

我一直在使用 Curiously recurring template pattern一般代码如下所示:

template <typename T> void genericFunction(T &);
template <typename T> struct Functionality {
void genericMethod() {
genericFunction(*((T *)this)) ;
}
};

struct Klass : public Functionality<Klass> {};

void main() {
Klass obj ;
obj.genericMethod();
}

template <> void genericFunction<Klass>(Klass &obj) {
//do stuff with Klass &obj here
}

我今天遇到了一个错误,花了我大约 90 分钟的时间,这个错误是由于我的基类继承声明使用了不正确的模板参数引起的,有点像这样:

struct Klass : public Functionality<SomeOtherKlass> {}; //SomeOtherKlass wrong!!!

我想增强我的代码,以便检测派生类和基类模板参数之间的这种不匹配(运行时、编译时、任何时间:)),这甚至可能吗?谢谢。

最佳答案

您可以断言关系,例如genericMethod()使用 Boost 或 C++11 特性:

BOOST_STATIC_ASSERT(( boost::is_base_of<Functionality<T>, T>::value ));

... 虽然这是假设其他类不是从 Functionality<T> 派生的

另一种方法是在运行时在测试构建中声明关系:

template <typename T> struct Functionality {
#ifdef TEST_BUILD
virtual ~Functionality() {}
#endif
void genericMethod() {
#ifdef TEST_BUILD
assert(dynamic_cast<T*>(this));
#endif
genericFunction(*((T *)this)) ;
}
};

请注意,测试不会在 constructors and destructors 中运行

关于c++ - 如何在编译时检测基类的模板参数(错误)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8778762/

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