cpp特殊知识点
线程安全map,unordered_map
#include <thread>
#include <concurrent_unordered_map>
#include <concurrent_map>
宏定义的替换与连接
1.# 字符串化
# p(A) printf("A / 2 = %d", (A / 2))
// p(4)
// A / 2 = 2
# p2(A) printf("#A / 2 = %d, (A / 2))
// p2(4)
// 4 / 2 = 2
2.## 组成
# p3(n) x ## n
// int p3(1) = 0;
// 等价与 int x1 = 0;
本文来自博客园,作者:InsiApple,转载请注明原文链接:https://www.cnblogs.com/InsiApple/p/17847046.html