Re: SFINAE revisited
On Jul 15, 7:44 pm, joseph cook <joec...@gmail.com> wrote:
On Jul 15, 12:22 pm, James Kanze <james.ka...@gmail.com> wrote:
Just ran into an interesting question concerning SFINAE.
Given the following code:
#include <iostream>
#include <typeinfo>
template< typename T >
class P
{
public:
P( T* ) { std::cout << "In P: normal ctor" << std::endl ; }
template< typename U >
P( U* ) { std::cout << "In P: template ctor (U = "
<< typeid( U ).name() << ')' << std::endl ; }
} ;
class B
{
public:
virtual ~B() {}
} ;
int
main()
{
class D : public B {} ;
P< B > p( new D ) ;
return 0 ;
}
Should this compile, and if so, what should the program output?
I've got three different compilers at hand: one fails to
compile, one outputs "In P: normal ctor", and one outputs "In P:
template ctor (U = ...)", where the ... is the mangled name of
D. (My own feeling is that it shouldn't compile. But I'm not
all that clear about template argument deduction, and at what
level SFINAE kicks in.)
Is this any different than having the same set-up with functions
instead of constructors?
Probably not. I just happened to run into it with constructors.
template<typename T>
class Foo
{
public:
void goo(T* a) { std::cout << "In Foo: normal fn" << std::endl ;}
template<typename U>
void goo(U* a) { std::cout <<"Int Foo: templated fn"<<std::endl;
};
class B { public: virtual ~B(){} };
class D : public B{};
int main()
{
Foo<B> foo;
foo.goo(new D);
}
I would think this last line reliably (and rightfully) always
chooses the templated function, but if replaced by "new B"
would pick the "normal fn".
Certainly, but you've changed one very important part; in my
code, the derived class is local, which means that it's illegal
to instantiate a template over it.
I don't see why Constructors should behave differently (I'd bd
curious if your "three compilers" behave differently in my
example.
I doubt they do, but your example has nothing to do with my
question.
--
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