Just a quick and simple question, but couldn't find it in any documentation.
template <class T>
T* Some_Class<T>::Some_Static_Variable = NULL;
It compiles with g++, but I am not sure if this is valid usage. Is it?
|
|
Just a quick and simple question, but couldn't find it in any documentation.
It compiles with g++, but I am not sure if this is valid usage. Is it?
|
||
|
|
|
|
Yes this code is correct. See this C++ Templates tutorial for more information |
||
|
|
|
|
That is valid C++ but it has nothing to do with a templated assignment operator?! The snippet defines a static member of A templated assignment operator is something like:
The template assignment operator is most useful for providing conversions when implementing variant-like classes. There are a bunch of caveats that you should take into consideration if you are going to use these critters though. A Google search will turn up the problematic cases. |
||
|
|