- #include <iostream>
- using namespace std;
-
- #define PR(x) cout << #x << " ---> " << x << endl;
- int main()
- {
- int i = 10;
- PR(i);
- float f = 10.3f;
- PR(f);
- return 0;
- }
结果为:
i ---> 10
f ---> 10.3
但是, 下面程序是有错误的:
- #include <iostream>
- using namespace std;
-
- #define PR(x) cout << #x << " ---> " << x << endl;
- int main()
- {
- int i = 10;
- cout << #i << " ---> " << i << endl;
- return 0;
- }

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

















