All pastes #1897542 Raw Edit

Funktionstemplates

public cpp v1 · immutable
#1897542 ·published 2010-07-09 23:32 UTC
rendered paste body
template <typename T>T nullValue(){   return T();                          // T wird nur als Rückgabetyp verwendet}int main(){   nullValue();                         // unzulaessig   double d = nullValue();              // unzulaessig   cout << nullValue<double>() << endl; // zulaessig}