Sobrecarga de funciones y flotación en C++
Aunque el polimorfismo es un fenómeno ampliamente útil en C++, a veces puede ser bastante complicado. Por ejemplo, considere el siguiente fragmento de código: #include<iostream> using namespace std; void test(float s,float t) { cout << «Function with float called «; } void test(int s, int t) { cout << «Function with int called «; } … Continue reading «Sobrecarga de funciones y flotación en C++»