|
◆ operator[]() [7/8]
template<template< typename U, typename V, typename... Args > class ObjectType = std::map, template< typename U, typename... Args > 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 U > class AllocatorType = std::allocator, template< typename T, typename SFINAE=void > class JSONSerializer = adl_serializer, class BinaryType = std::vector<std::uint8_t>>
template<typename T >
reference nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >::operator[] |
( |
T * |
key | ) |
|
|
inline |
Returns a reference to the element at with specified key key.
- Note
- If key is not found in the object, then it is silently added to the object and filled with a
null value to make key a valid reference. In case the value was null before, it is converted to an object.
- Parameters
-
[in] | key | key of the element to access |
- Returns
- reference to the element at key key
- Exceptions
-
type_error.305 | if the JSON value is not an object or null; in that cases, using the [] operator with a key makes no sense. |
- Complexity
- Logarithmic in the size of the container.
- Example
- The example below shows how object elements can be read and written using the
[] operator.
3#include <nlohmann/json.hpp>
12 { "one", 1}, { "two", 2}, { "three", 2.9}
16 std::cout << object[ "two"] << "\n\n";
22 std::cout << std::setw(4) << object << "\n\n";
28 object[ "five"][ "really"][ "nested"] = true;
31 std::cout << std::setw(4) << object << '\n';
basic_json<> json default JSON class
Output (play with this example online): 2
{
"one": 1,
"three": 3,
"two": 2
}
{
"five": {
"really": {
"nested": true
}
},
"four": null,
"one": 1,
"three": 3,
"two": 2
}
The example code above can be translated with g++ -std=c++11 -Isingle_include doc/examples/operatorarray__key_type.cpp -o operatorarray__key_type
- See also
- see at(const typename object_t::key_type&) for access by reference with range checking
-
see value() for access by value with a default value
- Since
- version 1.1.0
Definition at line 21369 of file json.hpp.
|