Use std::copy_n
std::array<T, N> arr;
std::copy_n(vec.begin(), N, arr.begin());
Edit: I didn't notice that you'd asked about moving the elements as well. To move, wrap the source iterator in std::move_iterator
.
std::copy_n(std::make_move_iterator(v.begin()), N, arr.begin());
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…