摘要: 1.const(让意图更加明显) vector<int> vec={1,2,3}; int sum=0; for(const auto& val:vec){ //遍历向量时,实际上并没有改变其值 sum+=val; } //sum=std::accumulate(vec.begin(),vec.en 阅读全文
posted @ 2024-06-29 12:50 MENDAXZ 阅读(7) 评论(0) 推荐(0) 编辑