//T could converted to U ?
template<typename T, typename U>
class Conversion
{
private:
    typedef char Small;
    struct Big{ char big[2]; };

    static Small _helper_fun(U);
    static Big _helper_fun(...);
    static T _make_T();
public:
    enum {
        Exists = (sizeof(_helper_fun(_make_T())) == sizeof(Small)),
        Exists2Way = ( Exists && Conversion<U,T>::Exists),
        Same = false
    };
};

// partial specialization for "same type"
template<typename T>
class Conversion<T, T>
{
public:
    enum{
    Exists = true,
    Exists2Way = true,
    Same = true
    };
};

// T is subclass of U ?
template<typename T, typename U>
class IsSubclass
{
public:
    enum{
    Result = Conversion<T*, U*>::Exists
    };
};


相关文章:

  • 2021-08-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
猜你喜欢
  • 2021-10-21
  • 2022-12-23
  • 2022-12-23
  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案