json/doc/examples/operator_deserialize.cpp

27 lines
524 B
C++
Raw Normal View History

#include <iostream>
2018-08-16 21:53:47 +02:00
#include <iomanip>
#include <sstream>
#include <nlohmann/json.hpp>
2015-06-22 23:21:49 +02:00
using json = nlohmann::json;
2015-06-22 23:21:49 +02:00
int main()
{
// create stream with serialized JSON
std::stringstream ss;
ss << R"({
"number": 23,
"string": "Hello, world!",
"array": [1, 2, 3, 4, 5],
"boolean": false,
"null": null
})";
// create JSON value and read the serialization from the stream
json j;
2017-09-30 10:18:18 +02:00
ss >> j;
2015-06-22 23:21:49 +02:00
// serialize JSON
std::cout << std::setw(2) << j << '\n';
}