Is is possible in C++ to include/exclude a member variable based on template parameters?
Here is an example:
template< class T >
class RealNumber
{
T real;
};
template< class T >
class ComplexNumber
{
T real;
T imag;
};
As they have many common properties, having only one class to represent a number ( with extra template parameter ) may prevent some code duplications.
What I wanted to do is something like
template< class T , class U >
Number
{
T real;
// If U is not void
U imag;
}
So if second parameter is void, there would be no member named imag, yielding:
sizeof( Number< T , void > ) == sizeof( T )
I tried enable_if but couldn't get any result.
If this is not possible, are there any hacks that can make this possible?
Number<T>and branch on whetherTis fundamental orstd::pair<U,W>. – Kerrek SB Nov 14 '11 at 4:07compressed_pair. – Dennis Zickefoose Nov 14 '11 at 4:54