Javascript – 数组遍历方式总结
1 Javascript数组遍历方法 Javascript中共有以下几种数组遍历方法: for for-in forEach for-of 上述四种方法都可以对数组进行遍历,下文简单总结这四种方法的使用以及优缺点。 1.1 for 示例代码: for (let index=0; index <…
- Javascript
- 2023-08-07
C++STL容器 – std::map删除指定元素
1 for循环遍历std::map删除指定元素 1.1 第一种方式 #include <iostream> #include <map> #include <string> void PrintMap(const std::map<int, std::str…
- C++
- 2022-02-25
C++11 – 使用std::thread,std::shared_future,std::promise并行化/多线程化for循环,提升处理速度
1 应用场景 在实际的应用过程中,经常会遇到一个大数量的for循环耗时的问题,比如说出现了一个10000000次的for循环,每一次循环处理业务逻辑需要耗时1ms,如: for (int i = 0; i < 10000000; ++i) { dosomething() } 那么整个for循环…
- C++
- 2021-12-17