C++ Programming Guide

For Static Data Members

The definition of a template static data member consists of the template parameter specification followed by a variable definition, where the variable identifier is qualified by the class template name and its template actual arguments.


template <unsigned Size> int String<Size>::overflows = 0;