美文网首页
C++11 原生字符串

C++11 原生字符串

作者: Then丶 | 来源:发表于2020-07-02 20:47 被阅读0次
    #include <iostream> 
    using namespace std;
    
    int main()
    {
        cout<<u8R"(\u4F60,\n
            \u597D)"<<endl;
        cout << u8R"(你好)" << endl;
        cout << sizeof(u8R"(hello)") << "\t" << u8R"(hello)" << endl;
        cout << sizeof(uR"(hello)") << "\t" << uR"(hello)" << endl;
        cout << sizeof(UR"(hello)") << "\t" << UR"(hello)" << endl;
    }
    

    相关文章

      网友评论

          本文标题:C++11 原生字符串

          本文链接:https://www.haomeiwen.com/subject/rudgfktx.html