09 2024 档案

摘要:#include <iostream> #include <unordered_set> #include <thread> #include <mutex> #include <vector> #include <random> std::unordered_set<int> sharedSet; 阅读全文
posted @ 2024-09-07 10:00 joel-q 阅读(4) 评论(0) 推荐(0) 编辑
摘要:如何分析是哪个接口调用了最多次的operator new[]接口? 重载 operator new[]:你可以在你的程序中重载 operator new[],记录每次调用时的调用栈信息。 #include <iostream> #include <fstream> #include <new> #i 阅读全文
posted @ 2024-09-02 18:46 joel-q 阅读(3) 评论(0) 推荐(0) 编辑