Does destructor of base template class need to be virtual?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kasthurirangan.balaji@gmail.com

    Does destructor of base template class need to be virtual?

    Hello,

    template<class Base>
    class Derived : public Base
    {
    };

    By using template, i understand the actual base type will be deduced
    at compile time. Moreover, class Derived will consist only of
    functions which inturn call functions of the base type. Also, i would
    like to hear comments about this kind of design.

    Thanks,
    Balaji.
  • =?ISO-8859-1?Q?Marcel_M=FCller?=

    #2
    Re: Does destructor of base template class need to be virtual?

    Hi,

    kasthurirangan. balaji@gmail.co m schrieb:
    template<class Base>
    class Derived : public Base
    {
    };
    >
    By using template, i understand the actual base type will be deduced
    at compile time.
    true.

    However, the question from your subject is not related to that at all.
    The destructor of Base has to be virtual if and only if you delete
    objects of some derived type through ponters of type Base*. This is the
    same as for any other base class.
    Moreover, class Derived will consist only of
    functions which inturn call functions of the base type. Also, i would
    like to hear comments about this kind of design.
    It is difficult to deduce what you are going to do.

    Patterns like this are somewhat uncommon, but they can be a good advise
    in some cases. Mostly, you could also use a interface of Base, a pointer
    or a reference to Base or even a member of type Base instead of this
    inheritance. In some cases where performance counts, the above solution
    is faster because it moves some logic from runtime to the compile time.
    Also it might be a lot of work to expose the whole interface of Base
    through Derived otherwise. In case it consists of public or protected
    member variables this is impossible.


    Marcel

    Comment

    • kasthurirangan.balaji@gmail.com

      #3
      Re: Does destructor of base template class need to be virtual?

      On Jul 9, 2:44 am, Marcel Müller <news.5.ma...@s pamgourmet.comw rote:
      Hi,
      >
      kasthurirangan. bal...@gmail.co m schrieb:
      >
      template<class Base>
      class Derived : public Base
      {
      };
      >
      By using template, i understand the actual base type will be deduced
      at compile time.
      >
      true.
      >
      However, the question from your subject is not related to that at all.
      The destructor of Base has to be virtual if and only if you delete
      objects of some derived type through ponters of type Base*. This is the
      same as for any other base class.
      >
      Moreover, class Derived will consist only of
      functions which inturn call functions of the base type. Also, i would
      like to hear comments about this kind of design.
      >
      It is difficult to deduce what you are going to do.
      >
      Patterns like this are somewhat uncommon, but they can be a good advise
      in some cases. Mostly, you could also use a interface of Base, a pointer
      or a reference to Base or even a member of type Base instead of this
      inheritance. In some cases where performance counts, the above solution
      is faster because it moves some logic from runtime to the compile time.
      Also it might be a lot of work to expose the whole interface of Base
      through Derived otherwise. In case it consists of public or protected
      member variables this is impossible.
      >
      Marcel
      Thanks Alf & Marcel. I shall weigh all options(inherit ance,
      containment, non-template as well access thru public/protected/
      private) and also refer c++ templates.
      For further queries i shall open a new thread.

      Thanks,
      Balaji.

      Comment

      Working...