Say I have a templated class:

template <typename T>
class foo {
  void do_someting(T obj) {
    // do something generic...
  }
};

and I want to specialize do_something, but within it I want to call the "normal" do_something function:

template<>
void foo<MyObj>::do_something(MyObj obj) {
  // do something specific...
  // and ALSO do something generic!
}

is there a way to refer to the normal version of do_something within my specialized function? Or do I just have to copy the code?

(I know that I could refactor foo in such a way that I wouldn't have this exact problem, but as it happens I can't really modify the "real" foo, as it's heavily-shared code.)

link|improve this question
4  
There is no "normal" version of do_something for the type MyObj - the entire effect of template specialization is to replace the instantiation that you would have got from the base template, with the class/function you define in the specialization. – Steve Jessop Nov 4 '10 at 17:11
Right, but the compiler knows about the code in foo<T>::do_something, there's no reason why it couldn't let me refer to it somehow. I'm totally willing to believe that this language feature just doesn't exist, though---that's what I'm trying to find out. – Jacob B Nov 4 '10 at 17:13
1  
@Steve Townsend -- that's a different question. That is asking how you can have a class with some specialized functions and some unspecialized functions. – Jacob B Nov 4 '10 at 17:15
@Jacob - right, missed that – Steve Townsend Nov 4 '10 at 17:22
show 1 more comment
feedback

2 Answers

up vote 5 down vote accepted

No. Your specialization is the only definition that will exist for the MyObj type argument. But, consider modifying the foo template in this manner, which will be transparent to the current users of the template:

template<typename T>
class foo {
  void prelude(T &obj){ // choose a better name
    /* do nothing */
  }
  void do_something(T obj){
    prelude(obj);
    // do something generic...
  }
};

Then define a specialization for the prelude:

template<>
void foo<MyObj>::prelude(MyObj &obj){
  // do something specific
}

This is somewhat similar in structure to the main use case for private virtual members. (Sort of. Not really. But it's what inspired me in this answer.)

link|improve this answer
feedback

You might also consider a type that is not MyObj, but implicitly converts to it, but the best way would be to refactor and perhaps extract the common generic something.

#include <iostream>
#include <boost/ref.hpp>
typedef int MyObj;


template <typename T>
struct foo {
  void do_something(T obj) {
    // do something generic...
    std::cout << "generic " << obj << '\n';
  }
};

template<>
void foo<MyObj>::do_something(MyObj obj) {
  // do something specific...
  std::cout << "special " << obj << '\n';
  // and ALSO do something generic!
  foo<boost::reference_wrapper<MyObj> >().do_something(boost::ref(obj));
}

int main()
{
    foo<int> f;
    f.do_something(10);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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