6453


Przeciążanie funkcji

Język C++ pozwala, aby kilka funkcji o takiej samej nazwie było definiowanych tak długo, jak długo zawierają one różne zestawy parametrów.

// Fig. 3.25: fig03_25.cpp

// Using overloaded functions

#include <iostream.h>

int square( int x ) { return x * x; }

double square( double y ) { return y * y; }

int main()

{

cout << "The square of integer 7 is " << square( 7 )

<< "\nThe square of double 7.5 is " << square( 7.5 )

<< endl;

return 0;

}

0x08 graphic

The square of integer 7 is 49

The square of double 7.5 is 56.25



Wyszukiwarka

Podobne podstrony:
6453
6453
6453, Pedagogika Specjalna, pytania
6453
6453
praca-magisterska-6453, Dokumenty(8)
6453
6453
6453
6453

więcej podobnych podstron