When I'm writing a function in a template class how can I find out what my T is?
e.g.
template <typename T>
ostream& operator << (ostream &out,Vector<T>& vec)
{
if (typename T == int)
}
How can I write the above if statement so it works?
|
|
Something like this:
|
|||
|
|
|
Define it explicitly, e.g.:
|
|||||||||||
|
|
Simplest, most general solution: Just write a plain old overload of the function:
This assumes that the IF you want to use one common implementation of the function, with just an
In general, don't use |
|||
|
|
|
The easiest way is to provide a template specialisation:
|
|||||||||||||||||
|
|
This way.
The compiler will choose this function over the function template if you pass Edit: I found this article, which attempts to explain why to prefer overloading to template specialization. |
|||||
|
|
TypeID is never a good idea. It relies on RTTI. By the way here is your answer :http://www.parashift.com/c++-faq-lite/templates.html#faq-35.7 |
|||||||||||||
|
|
C++ templates don't work this way. The general idea of templates is express somethings which is common for a lot of different types. And in your case you should use template specialization.
Then C++ compiler will call this function when you use int type and general implementation for any other type
|
|||
|
|