Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So my instructor handed out some code that I believe does not work at all and I want to get some clarification on it. He used this in his hand out notes (it implies that this is correct).

template<class T>
class State
{
public:
    virtual void Enter(T*)=0;
    virtual void Execute(T*)=0;
    virtual void Exit(T*)=0;
    virtual ~State(){};
};

I can see what he is trying to do but I believe the compiler will not like it at all. Can anyone help explain why this does or does not work.

share|improve this question
Why do you think it won't work? – Seth Carnegie Nov 15 '12 at 18:54

1 Answer

This should work as none of the member functions are not template member functions. The base class arguments can be deduced at compile-time, and the actual function to call can still be determined at runtime.

If you had this:

class Foo
{
    template< typename T > virtual void Bar( T * ) = 0;
};

You would have problems as there is no way to generate functions to handle all the potential types that may be passed into this function at compile time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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