JSON for Modern C++  3.0.0

◆ operator>> [2/2]

template<template< typename, typename, typename... > class ObjectType = std::map, template< typename, typename... > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename > class AllocatorType = std::allocator, template< typename, typename=void > class JSONSerializer = adl_serializer>
std::istream& operator>> ( std::istream &  i,
basic_json j 
)
friend

Deserializes an input stream to a JSON value.

Parameters
[in,out]iinput stream to read a serialized JSON value from
[in,out]jJSON value to write the deserialized input to
Exceptions
parse_error.101in case of an unexpected token
parse_error.102if to_unicode fails or surrogate error
parse_error.103if to_unicode fails
Complexity
Linear in the length of the input. The parser is a predictive LL(1) parser.
Note
A UTF-8 byte order mark is silently ignored.
Example
The example below shows how a JSON value is constructed by reading a serialization from a stream.
1 #include <iostream>
2 #include "json.hpp"
3 
4 using json = nlohmann::json;
5 
6 int main()
7 {
8  // create stream with serialized JSON
9  std::stringstream ss;
10  ss << R"({
11  "number": 23,
12  "string": "Hello, world!",
13  "array": [1, 2, 3, 4, 5],
14  "boolean": false,
15  "null": null
16  })";
17 
18  // create JSON value and read the serialization from the stream
19  json j;
20  ss >> j;
21 
22  // serialize JSON
23  std::cout << std::setw(2) << j << '\n';
24 }
basic_json<> json
default JSON class
Definition: json.hpp:14353
Output (play with this example online):
{
  "array": [
    1,
    2,
    3,
    4,
    5
  ],
  "boolean": false,
  "null": null,
  "number": 23,
  "string": "Hello, world!"
}
The example code above can be translated with
g++ -std=c++11 -Isrc doc/examples/operator_deserialize.cpp -o operator_deserialize 
See also
parse(std::istream&, const parser_callback_t) for a variant with a parser callback function to filter values while parsing
Since
version 1.0.0

Definition at line 13163 of file json.hpp.