Possible Duplicate:
Is there an easy way to tell if a class/struct has no data members?

Can we detect emply classes, possibly using template?

struct A {};
struct B { char c;};

std::cout << is_empty<A>::value; //should print 0
std::cout << is_empty<B>::value; //should print 1

//this is important, the alleged duplicate doesn't deal with this case!
std::cout << is_empty<int>::value; //should print 0

Only C++03 only, not C++0x!

link|improve this question

1  
Duplicate-ish: stackoverflow.com/questions/4828992/… – GManNickG Feb 14 '11 at 17:40
@GMan: I edited my post. So it's not exactly duplicate! – Nawaz Feb 14 '11 at 17:44
feedback

closed as exact duplicate by GManNickG, Ben Voigt, wilhelmtell, Nawaz, Prasoon Saurav Feb 14 '11 at 17:58

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

If your compiler supports the empty base class optimization, yes.

template <typename T>
struct is_empty
{
    struct test : T { char c; };
    enum { value = sizeof (test) == sizeof (char) };
};

template <>
struct is_empty<int>
{
    enum { value = 0 };
};

Better:

#include  <boost/type_traits/is_fundamental.hpp>
template <bool fund, typename T>
struct is_empty_helper
{
    enum { value = 0 };
};

template <typename T>
struct is_empty_helper<false, T>
{
    struct test : T { char c; };
    enum { value = sizeof (test) == sizeof (char) };
};

template<typename T>
struct is_empty
{
    enum { value = is_empty_helper<boost::is_fundamental<T>::value, T>::value };
};
link|improve this answer
@Ben: See the edit which makes your solution slightly incorrect! – Nawaz Feb 14 '11 at 17:45
@Nawaz: I'm entitled to edit my answer for each change to the question. – Ben Voigt Feb 14 '11 at 17:46
@Nawaz: Just add a specialization which returns false if T is not a class-type. – GManNickG Feb 14 '11 at 17:46
@Ben: Sure. That is why I informed you. :-) – Nawaz Feb 14 '11 at 17:47
@Ben: Your edit would work with int only, how about double for example? – Nawaz Feb 14 '11 at 17:48
show 5 more comments
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.