|
§ basic_json() [4/23]
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<class CompatibleObjectType , typename std::enable_if< std::is_constructible< typename object_t::key_type, typename CompatibleObjectType::key_type >::value and std::is_constructible< basic_json, typename CompatibleObjectType::mapped_type >::value, int >::type = 0>
Create an object JSON value with a given content. This constructor allows any type CompatibleObjectType that can be used to construct values of type object_t.
- Template Parameters
-
CompatibleObjectType | An object type whose key_type and value_type is compatible to object_t. Examples include std::map , std::unordered_map , std::multimap , and std::unordered_multimap with a key_type of std::string , and a value_type from which a basic_json value can be constructed. |
- Parameters
-
[in] | val | a value for the object |
- Complexity
- Linear in the size of the passed val.
- Exceptions
-
std::bad_alloc | if allocation for object value fails |
- Example
- The following code shows the constructor with several compatible object type parameters.
2 #include <unordered_map> 9 std::map<std::string, int> c_map 11 { "one", 1}, { "two", 2}, { "three", 3} 16 std::unordered_map<const char*, double> c_umap 18 { "one", 1.2}, { "two", 2.3}, { "three", 3.4} 23 std::multimap<std::string, bool> c_mmap 25 { "one", true}, { "two", true}, { "three", false}, { "three", true} 30 std::unordered_multimap<std::string, bool> c_ummap 32 { "one", true}, { "two", true}, { "three", false}, { "three", true} 34 json j_ummap(c_ummap); 37 std::cout << j_map << '\n'; 38 std::cout << j_umap << '\n'; 39 std::cout << j_mmap << '\n'; 40 std::cout << j_ummap << '\n'; basic_json<> json default JSON class
Output (play with this example online): {"one":1,"three":3,"two":2}
{"one":1.2,"three":3.4,"two":2.3}
{"one":true,"three":false,"two":true}
{"one":true,"three":false,"two":true}
The example code above can be translated withg++ -std=c++11 -Isrc doc/examples/basic_json__CompatibleObjectType.cpp -o basic_json__CompatibleObjectType
- See also
- basic_json(const object_t&) – create an object value
- Since
- version 1.0.0
Definition at line 1151 of file json.hpp.
|