码迷,mamicode.com
首页 > 其他好文 > 详细

编译期间侦测可转换性

时间:2014-08-27 21:51:48      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:io   ar   amp   sp   on   size   ef   c   type   

template <class T,class U>
class Conversion
{
    typedef char Small;
    class Big {char dummy[2]; };
    static Small Test(U);
    static Big Test(...);
    static T MakeT(); //稻草人函数
public:
    enum { exists = sizeof(Test(MakeT())) == sizeof(Small)};
};

int _tmain(int argc, _TCHAR* argv[])
{
    using namespace std;

    cout<< Conversion<double,int>::exists << ‘ ‘;
    
    getchar();

    return 0;
}

 

sizeof 并不会真有任何表达式被求值。

====================================

template <class T,class U>
class Conversion
{
    typedef char Small;
    class Big {char dummy[2]; };
    static Small Test(U);
    static Big Test(...);
    static T MakeT();
public:
    enum { exists = sizeof(Test(MakeT())) == sizeof(Small)};
    enum { exists2way = exists &&
        Conversion<U,T>::exists };
    enum { sameType = false};
};

template <class T>
class Conversion<T,T>
{
public:
    enum { exists = 1; exists2way =1; sameType = false};
};

class A
{
    int a;
};

class B :public A
{
    int a;
};

#define  SUPERSUBCLASS(T,U) \
    (Conversion<const U*,const T*>::exists && \
    !Conversion<const T*,void *>::sameType)

int _tmain(int argc, _TCHAR* argv[])
{
    using namespace std;

    cout<< Conversion<double,int>::exists << ‘ ‘;

    if( SUPERSUBCLASS(A,B) )
    {
        cout<< "SUPERSUBCLASS<A,B>,A is base class" << ‘ ‘;
    }
    
    getchar();

    return 0;
}

 

编译期间侦测可转换性

标签:io   ar   amp   sp   on   size   ef   c   type   

原文地址:http://www.cnblogs.com/zhoug2020/p/3940374.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!