tmpl/max1.cpp

Das folgende Code-Beispiel stammt aus dem Buch
Objektorientiertes Programmieren in C++ - Ein Tutorial für Ein- und Umsteiger
von Nicolai Josuttis, Addison-Wesley München, 2001
© Copyright Nicolai Josuttis 2001


#include <iostream>
#include <string>
#include "max.hpp"

int main()
{
    int         a, b;  // zwei Variablen vom Datentyp int
    std::string s, t;  // zwei Variablen der Klasse std::string
    //...
    std::cout << max(a,b) << std::endl;    // max() für zwei ints
    std::cout << max(s,t) << std::endl;    // max() für zwei Strings
}