我目前有一个类似于此的代码:
#include <type_traits>#include <iostream>#include <cassert>#include <string>class Base {public: virtual int f() { return 0; }};template<typename T>class Derived : public Base {private: T getValue_() { return T(); }public: int f() overrIDe { assert((std::is_same<T,int>::value)); T val = getValue_(); //return val; --> not possible if T not convertible to int return *reinterpret_cast<int*>(&val); }};template<typename T>class MoreDerived : public Derived<T> {public: int f() overrIDe { return 2; }};int main() { Derived<int> i; MoreDerived<std::string> f; std::cout << f.f() << " " << i.f() << std::endl;}
理想情况下,如果T!= int,则应禁用Derived< T> :: f().因为f是虚拟的,所以Derived< T> :: f()会为Derived的任何实例化生成,即使它从未被调用过.
但是使用代码使得Derived< T> (使用T!= int)永远不会仅作为MoreDerived< T>的基类创建.
所以Derived< T> :: f()中的Hack是编译程序所必需的; reinterpret_cast行永远不会被执行.
解决方法 你可以简单地将f专门化为int:template<typename T>class Derived : public Base {private: T getValue_() { return T(); }public: int f() overrIDe { return Base::f(); }};template <>int Derived<int>::f () { return getValue_();}总结
以上是内存溢出为你收集整理的c – 使用SFINAE禁用模板类成员函数全部内容,希望文章能够帮你解决c – 使用SFINAE禁用模板类成员函数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)