Recently I have dumb as a developer, so I took the plunge, got a C++ book and learning how to do things properly. In my head, I know what I would like to do. I effectively want an Interface that when inherited, must be overridden (if this is possible?). So far, I have the following:

class ICommand{

public:
    //  Virtual constructor. Needs to take a name as parameter
    //virtual ICommand(char*) =0;
    //  Virtual destructor, prevents memory leaks by forcing clean up on derived classes?
    //virtual ~ICommand() =0; 
    virtual void CallMe() =0;
    virtual void CallMe2() =0;
};

class MyCommand : public ICommand
{
public:
    // Is this correct?
    MyCommand(char* Name) { /* do stuff */ }
    virtual void CallMe() {}
    virtual void CallMe2() {}
};

I have purposely left how I think the constructor/destructor's should be implemented in ICommand. I know if I remove the comments, it will not compile. Please could someone:

  1. Show me how to declare the constructor/destructor's in ICommand and how they are meant to be used in MyCommand
  2. Have I set things up correctly in ICommand so that MyCommand must override CallMe and CallMe2.

I hope I haven't missed something really simple...

link|improve this question

Basically you should use std::string and the destructor would be {}. Also learn about constructor initializer list, and consider whether you shouldn't be taking const char*. – UncleBens Dec 14 '11 at 23:59
feedback

1 Answer

up vote 2 down vote accepted

C++ does not allow for virtual constructors. A simple implementation (without the virtual constructor) would look something like this:

class ICommand {
public:
    virtual ~ICommand() = 0;
    virtual void callMe() = 0;
    virtual void callMe2() = 0;
};

ICommand::~ICommand() { } // all destructors must exist

Note that even a pure virtual destructor must be defined.

A concrete implementation would look exactly like your example:

class MyCommand : public ICommand {
public:
    virtual void callMe() { }
    virtual void callMe2() { }
};

You have a couple of options for the constructor. One option is to disable the default constructor for ICommand, so that subclasses will have to implement a constructor that calls your ICommand constructor:

#include <string>

class ICommand {
private:
    const std::string name;
    ICommand();
public:
    ICommand(const std::string& name) : name(name) { }
    virtual ~ICommand() = 0;
    virtual void callMe() = 0;
    virtual void callMe2() = 0;
};

ICommand::~ICommand() { } // all destructors must exist

A concrete implementation would now look something like this:

class MyCommand : public ICommand {
public:
    MyCommand(const std::string& name) : ICommand(name) { }
    virtual void callMe() { }
    virtual void callMe2() { }
};
link|improve this answer
"C++ does not allow for virtual constructors" I'm not sure that's the right wording. What would a virtual constructor even mean, if some language were to implement it? (Note that I'm talking about actual constructors, not constructor-like functions, and am referring only to static languages.) – Paul Manta Dec 15 '11 at 0:17
@PaulManta Delphi has virtual constructors, which acts more like a factory but the type of the constructed object is decided during run-time (IIRC) – refp Dec 15 '11 at 0:21
I'm using the OP's definition of virtual constructor, which is more of a required function, similar to normal pure virtual member functions. In this case, something that forces subclasses to use a constructor that includes the "name" parameter. I agree that a "virtual constructor" technically doesn't make sense. – e.James Dec 15 '11 at 0:24
@Paul: You might find this interesting: parashift.com/c++-faq-lite/virtual-functions.html#faq-20.8 – Stuart Golodetz Dec 15 '11 at 0:44
@StuartGolodetz Notice that I excluded constructor-like functions in my original comment. – Paul Manta Dec 15 '11 at 0:58
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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