Search:

Type: Posts; User: CornedBee

Search: Search took 0.09 seconds.

  1. Replies
    16
    Views
    16,293

    MK27: that special declaration is archaic style....

    MK27: that special declaration is archaic style. Don't do it. Use a using declaration instead.

    class B ... {
    ...
    using A::foo;
    };

    Overloading, overriding, and hiding are independent...
  2. Replies
    16
    Views
    16,293

    Overriding, as laserlight says, applies only to...

    Overriding, as laserlight says, applies only to member functions in a derived class with the same name and argument types as a virtual function in some base class. (The return type may vary within...
Results 1 to 2 of 2