摘要: std::copy std::search std::back_inserter std::equal memcpy 演示如何使用 std::copy、 std::search、 std::back_inserter std::equal 这四个方法。 我们假设有两个向量,一个源向量 source, 阅读全文
posted @ 2024-04-01 18:28 He_LiangLiang 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 注意: cpu使用率计算的时候,需要sleep,这会造成当前计算线程的阻塞,因此 这里在单例里面单独开了一个线程来处理计算逻辑; 另外一个线程,是模拟外部 的多线程访问。 //singleton_template.h #pragma once #include <iostream> template 阅读全文
posted @ 2024-04-01 06:33 He_LiangLiang 阅读(3) 评论(0) 推荐(0) 编辑