In the following code:
#include <iostream>
class A
{
public:
void f( float x ) { std::cout << 1; }
void g() { std::cout << 11; }
};
class B : public A
{
public:
void f( char x ) { std::cout << 2; }
void g() { std::cout << 22; }
};
int main()
{
B b;
b.A::f( 0 );
b.A::g();
return 0;
}
Isn't this name hiding? And where is this syntax defined in The standard (C++11 or C++03, doesn't matter, it seems to be the same for both standards)?
I didn't know this is possible at all, that's the first time I see such syntax (saw it here for the first time: why cant i access class A function in following code? )
yes it is name hiding. hence it is not overloading(and not overriding) . section
13.2 Declaration matching
inN3485
explains about this.--end example]