devxlogo

Understanding Member Function Lookup Rules

Understanding Member Function Lookup Rules

Function lookup stops at a scope. In the case of class hierarchies, this means that a function?either virtual or not?declared in a derived class can hide a virtual member function with the same name in its base class, even if the functions’ signatures differ. For example:

 
   class B   {  public:     virtual void f(int);  };  class D : public B   {  public:     void f(void*);  };  D d ;  d.f(7) //#1 compilation error

The statement d.f(7) is in error although class B has a function called f() which takes int. To see why this is an error, let

See also  How to Create and Deploy QR Codes Online: A Comprehensive Guide
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist