摘要: C++ 风格的复制操作 使用STL中的copy算法 C++ int a[] = {1,2,3,4,5}; int b[5]; std::copy(std::begin(a),std::end(a),std::begin(b)); for(auto e:b) cout arr = {1,2,3,4,5 阅读全文
posted @ 2019-09-27 22:54 煊奕 阅读(29775) 评论(1) 推荐(2) 编辑