【c++】跟webrtc学std array 1: 混音的多维数组

  • 对于固定大小的数组,非常适合用std的array 实现。

静态赋初值

static constexpr std::array<int, 5> kInputValues = {
   0, 1, 2, 1, 0}

你可能感兴趣的:(c/c++笔面应用实战,c++,webrtc,开发语言)