BUG: 'using' Declaration Doesn't Overload Base Class MembersID: Q140604
|
Attempting to overload member functions located in a base class from a derived class with a 'using' declaration, may result in the following compiler error:
error C2664: 'function': cannot convert parameter 'number' from 'type1' to 'type2'
This particular problem occurs if the member functions that are being overloaded are declared before the 'using' declaration in the class definition.
Place the 'using' declaration above the declarations for the member functions you want to overload. See the comments in the following code sample:
#include "iostream.h"
class A
{
public:
int f(int) {cout << "In A::f(int)!!!\n";return 0;}
};
class B : public A
{
public:
int f(char*){cout << "In D::f(char*)!!!\n";return 0;}
using A::f; // <<== move this above the int f(char*)
// declaration to fix the problem.
};
void main()
{
B d;
d.A::f(1);
d.f(1); // <<== C2664 happens here
d.f("Hi There");
}
Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article.
For more information on the 'using' declaration, please see:
\Visual C++ Books\C/C++\C++ Language\Reference\Declarations\ Namespaces\using Declaration
Additional query words: kbVC400bug
Keywords : kbCompiler kbVC400bug kbVC410bug kbVC420bug kbVC500bug kbVC600bug
Version : winnt:4.0,4.1,4.2,5.0,6.0
Platform : winnt
Issue type : kbbug
Last Reviewed: May 14, 1999