[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++11 字符数组初始化和字符串字面量

托管 C++ 中的逐字字面量? (就像 C# 的 @"blah")

第5章 技巧性基础:5.4 原始数组和字符串字面量的模板

Java 12 特性冻结,但原始字符串字面量特性被移除

C++11之用户自定义字面量(ClassType operator““_C(param...))

C++11之用户自定义字面量(ClassType operator““_C(param...))