最佳答案
我最近修改了一些代码,在函数的一行中发现了一个已经存在的 bug:
std:;string x = y;
该代码仍在编译,并且一直按预期工作。
字符串定义可以工作,因为这个文件是 using namespace std;
,所以首先不需要 std::
。
问题是,为什么 std:;
要编译,它在做什么?