namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:beispiel:using

Beipiel using

using.cpp
#include <iostream>
#include <vector>
 
template <class T>
using Matrix = std::vector<std::vector<T>>;
 
int main()
{
  Matrix<double> m{{1, 2, 3},  
                   {1, 4, 9},
                   {1, 8, 27}};
 
  for (auto const& line : m)
  {
    for (auto x : line)
      std::cout << x << ' ';
    std::cout << '\n';
  }
}
kennen/beispiel/using.txt · Zuletzt geändert: 2020-07-27 10:28 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki