Re: Overload lookup of pointer-to-member
On Jul 12, 9:49 am, Abhishek Padmanabh <abhishek.padman...@gmail.com>
wrote:
On Jul 12, 8:14 am, "jkn...@gmail.com" <jkn...@gmail.com> wrote:
In the following program, if the call to bar does not
specify the type as <int>, gcc gives the error "no matching
function for call to =91bar(A&, <unresolved overloaded
function type>)'". Since bar explicitly takes a
pointer-to-member with no parameters, why is the lookup for
the overloaded function not able to use the number of
arguments to determine the appropriate function? Is there a
relevant portion of the standard that governs the lookup
rules in this case?
#include <iostream>
using namespace std;
class A
{
public:
int foo()
{
cout << "int foo" << endl;
return 5;
}
template <class A>
void foo (A a)
{
cout << "template foo" << endl;
}
};
template <class Type, class Obj>
void bar (Obj& obj, Type (Obj::*func)())
{
Type t = (obj.*func)();
cout << "TYPE: " << t << endl;
}
int main ()
{
A a;
bar<int>(a, &A::foo); //<int> required, even though only one of=
the
functions takes no arguments
bar(a, &A::foo); //doesn't compile
}
Compiles fine with Comeau online and VC++ 2005. So, could be
there's something wrong with g++ (an older version, may be).
I don't know. The problem isn't overload resolution per se, but
template type deduction, which has a completely different set of
rules. In this case, I'll admit that I don't understand the
rules enough to be sure, but off hand, I don't think it is
supposed to work. The compiler can't effectively do the type
deduction for bar until it has resolved the overloading of
&A::foo, and it can't resolve this overloading until it knows
the type &A::foo is being used to initialize.
--
James Kanze (GABI Software) email:james.kanze@gmail.com
Conseils en informatique orient=E9e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S=E9mard, 78210 St.-Cyr-l'=C9cole, France, +33 (0)1 30 23 00 34