【面试】如何比较一个类型【模板使用】【sizeof用法】

#include <iostream>
using namespace std;

void testEmptyClass();

struct Empty {

};

struct DummyEmpty {
    char a;

};

template<typename T>
struct EmptyHelper : T { 
    int group[256];
};

struct EmptyHelper2 {
    int group[256];
};

template<typename T>
bool isEmptyClass() {
    return sizeof(EmptyHelper2) == sizeof(EmptyHelper<T>); //if == , then is Empty
}

void testEmptyClass()
{
    cout << "Empty sizeof = " << sizeof(Empty) << endl;
    cout << "DummyEmpty sizeof = " << sizeof(DummyEmpty) << endl;
    cout  << "Empty is " << isEmptyClass<Empty>() << endl;
    cout << "DummyEmpty is " << isEmptyClass<DummyEmpty>() << endl;
}

int main()
{
    testEmptyClass();
}

 

posted @ 2019-04-07 20:44  douzujun  阅读(486)  评论(0编辑  收藏  举报