[C++11]字符串原始字面量
Posted Wecccccccc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[C++11]字符串原始字面量相关的知识,希望对你有一定的参考价值。
代码如下:
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str1 = R"(D:\\hello\\world\\test.txt)";
cout << str1 << endl;
string str2 = R"(dsdas
asdas
asda
asda
gd
fh
ada
gd)";
cout << str2 << endl;
string str3 = R"hello(D:hello\\world\\test.txt)hello";
cout << str3 << endl;
return 0;
}
测试结果:
以上是关于[C++11]字符串原始字面量的主要内容,如果未能解决你的问题,请参考以下文章
托管 C++ 中的逐字字面量? (就像 C# 的 @"blah")