std::string R 原始字符串字面量

C++11 原始字符串字面量(raw string literal)

原始字符串字面量: 包含’换行符’和其他’特殊字符’,不用转义

#include 
#include 

int main() {
  std::string json = R"(
    {
      "a": 1,
      "b": 2
    }
  )";
  std::cout << json << std::endl;
}

你可能感兴趣的:(c++)