什么" uR"在cout中意味着什么?

时间:2017-09-17 18:31:18

标签: c++ cout

在下面的C ++代码中,uR是什么意思?

#include <iostream>

using namespace std;

int main() {
    cout << uR"(Hello, world!)" << '\n';

    return 0;
}

就在这里,现在打印

  

0x55ad7e90b986

2 个答案:

答案 0 :(得分:8)

根据this page R表示原始字符串,而u表示它以UTF-16编码。这两者可以合并。

答案 1 :(得分:0)

UTF16编码的字符串。看到这美丽的MSDN article