C++ vector 每个元素 加减

// m_VRow 是一个 整型的 vector 实现的时每个元素的值 减 1
for_each(m_VRow.begin() + iRow, m_VRow.end(), [](int& i) { i--; });

 

你可能感兴趣的:(VC)