在下面的C ++代码中,uR
是什么意思?
#include <iostream>
using namespace std;
int main() {
cout << uR"(Hello, world!)" << '\n';
return 0;
}
就在这里,现在打印
0x55ad7e90b986
答案 0 :(得分:8)
根据this page ,R
表示原始字符串,而u
表示它以UTF-16编码。这两者可以合并。
答案 1 :(得分:0)
UTF16编码的字符串。看到这美丽的MSDN article