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>
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
- Complexity
- Constant.
- Exceptions
-
std::out_of_range | if the JSON pointer can not be resolved |
std::domain_error | if an array index begins with '0' |
std::invalid_argument | if an array index was not a number |
- 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';
basic_json<> json
default JSON class
Output (play with this example online): 1
"foo"
[1,2]
2
"bar"
[1,21]
The example code above can be translated withg++ -std=c++11 -Isrc doc/examples/at_json_pointer.cpp -o at_json_pointer
- Since
- version 2.0.0
Definition at line 9545 of file json.hpp.