- #include <iostream>
- using namespace std;
-
- #define A(i) a##i
-
- int main()
- {
- int A(3) = 3;
- cout << a3 << endl; // 3
-
- return 0;
- }
但是, 下面这样不行:
- #include <iostream>
- using namespace std;
-
- int main()
- {
- int a##3 = 3;
- cout << a3 << endl;
-
- return 0;
- }

![[手游] 三网H5小游戏【少年仙路】WIN系服务端+Linux手工服务端+详细搭建教程](https://cdn.jxasp.com:9143/image/20260615/136BC33AA47EB0D84E878835A8B38FDB.png)

















