I am currently learning C++ in-depth, and I have come across something that has stumped for a couple hours now. Why is it when I make a template and then specialize it, that I can't call or define that function for the specialized version? The compiler complains, and I have scoured Google for a possible hint as to what I am doing wrong, but to no avail. I am very sure it is something very simple that I am overlooking:

template <typename T>
class C { };

//specialization to type char
template <>
class C <char> 
{
  public:
    void echo();
};

//compiler complains here
template <>
void C <char> :: echo() 
{
  cout << "HERE" << endl;
}

error: template-id ‘echo<>’ for ‘void C::echo()’ does not match any template declaration

Demo.

link|improve this question
possible duplicate of template-id does not match any template delcaration – GWW Oct 28 '11 at 4:49
feedback

1 Answer

up vote 6 down vote accepted
//specialization to type char
template <>
class C <char>
{
  public:
    void echo();
};

//template<>  <----- don't need to mention template<> here
void C <char> :: echo()
{
  cout << "HERE\n";
}

P.s. Never say endl when you mean '\n'. What is the C++ iostream endl fiasco?

link|improve this answer
1  
Thanks @Rob! Last question, why does the function "echo()" not need a template specifier? – jrd1 Oct 28 '11 at 5:02
2  
@jrd1, because echo() is not a template function by itself. It's a member method of a template class. – iammilind Oct 28 '11 at 5:08
@jrd1, contrast this program. – Robᵩ Oct 28 '11 at 5:12
Thanks @iammilind and @Rob! – jrd1 Oct 28 '11 at 5:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.