源代码中的URI

时间:2016-06-24 14:38:45

标签: c++

任何人解释为什么我可以将URI放在C ++源代码中?

#include <iostream>
int main() {
    using namespace std;
    http://www.google.com
    int x = 5;
    cout << x;
}

这对我来说很奇怪?

例如,Visual Studio 2015向我发出警告:警告C4102:'http':未引用的标签 但是代码编译了!

1 个答案:

答案 0 :(得分:7)

编译器将http:视为标签,将//www.google.com视为注释。