In C++, is there a way to let compiler automatically decide which function you need? You all know that:
void F (int i);
void F (char *f);
...
int k = 0;
F(k);
char *f = "0";
F(f);
...or via template:
template <typename T>
void F(T i);
...
F(k);
F(f);
What is analogy on class level? Is there a way to let compiler decide which class you need?
fwrong. – Kerrek SB Aug 20 '12 at 11:50