Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C++/C++11 では、std::array のエイリアスをどのように宣言しますか?
私は次のようなことを意味します:
template<size_t N> using Array = array<int, N>; int get(Array A, int index) { return A[index]; }
しかし、これはコンパイル エラーになります: 配列は型ではありません。 正しい方法は何ですか?どうもありがとう。