namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:beispiel:decltype

Beispiel decltype

Typ eines Ausdrucks erschließen:

decltype.cpp
#include <iostream>
 
template <typename T1, typename T2>
auto sum(T1 a, T2 b) -> decltype(a+b) { return a + b; }
 
int main()
{
  auto x = 3;
  decltype(x) y = x; 
 
  std::cout << x << ' ' << y << ' ' << sum(x,y) << '\n';
}
kennen/beispiel/decltype.txt · Zuletzt geändert: 2017-04-19 21:39 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki