|
|
◆ at() [5/6]
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>
Returns a reference to the element at with specified JSON pointer ptr, with bounds checking.
- Parameters
-
| [in] | ptr | JSON pointer to the desired element |
- Returns
- reference to the element pointed to by ptr
- Exceptions
-
| parse_error.106 | if an array index in the passed JSON pointer ptr begins with '0'. See example below. |
| parse_error.109 | if an array index in the passed JSON pointer ptr is not a number. See example below. |
| out_of_range.401 | if an array index in the passed JSON pointer ptr is out of range. See example below. |
| out_of_range.402 | if the array index '-' is used in the passed JSON pointer ptr. As at provides checked access (and no elements are implicitly inserted), the index '-' is always invalid. See example below. |
| out_of_range.404 | if the JSON pointer ptr can not be resolved. See example below. |
- Exception safety
- Strong guarantee: if an exception is thrown, there are no changes in the JSON value.
- Complexity
- Constant.
- Since
- version 2.0.0
- Example
- The behavior is shown in the example.
10 { "number", 1}, { "string", "foo"}, { "array", {1, 2}} 16 std::cout << j. at( "/number"_json_pointer) << '\n'; 18 std::cout << j. at( "/string"_json_pointer) << '\n'; 20 std::cout << j. at( "/array"_json_pointer) << '\n'; 22 std::cout << j. at( "/array/1"_json_pointer) << '\n'; 27 j. at( "/string"_json_pointer) = "bar"; 29 std::cout << j[ "string"] << '\n'; 32 j. at( "/array/1"_json_pointer) = 21; 34 std::cout << j[ "array"] << '\n'; 45 std::cout << e.what() << '\n'; 56 std::cout << e.what() << '\n'; 67 std::cout << e.what() << '\n'; 78 std::cout << e.what() << '\n'; 89 std::cout << e.what() << '\n'; basic_json<> json default JSON class
reference at(size_type idx) access specified array element with bounds checking
detail::out_of_range out_of_range exception indicating access out of the defined range
detail::parse_error parse_error exception indicating a parse error
value_type & reference the type of an element reference
Output (play with this example online): 1
"foo"
[1,2]
2
"bar"
[1,21]
[json.exception.parse_error.106] parse error: array index '01' must not begin with '0'
[json.exception.parse_error.109] parse error: array index 'one' is not a number
[json.exception.out_of_range.401] array index 4 is out of range
[json.exception.out_of_range.402] array index '-' (2) is out of range
[json.exception.out_of_range.404] unresolved reference token 'foo'
The example code above can be translated withg++ -std=c++11 -Isrc doc/examples/at_json_pointer.cpp -o at_json_pointer
Definition at line 13329 of file json.hpp.
|