#include <iostream.h> void Add(int Left, int Right); void Add(double Left, double Right); main () { Add(5, 9); Add(3.2, 7.1); } // integer version of Add. void Add(int Left, int Right) { cout << Left << " + " << Right << " = " << Left+Right << endl; } // float version of Add. void Add(double Left, double Right) { cout << Left << " + " << Right << " = " << Left+Right << endl; }
file: /Techref/language/ccpp/cppref/EXAMPLES/overload.cc, 0KB, , updated: 1998/10/29 04:30, local time: 2024/11/5 01:32,
3.139.237.82:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/language/ccpp/cppref/EXAMPLES/overload.cc"> language ccpp cppref EXAMPLES overload</A> |
Did you find what you needed? |