# basic_json::get ```cpp // (1) template ValueType get() const noexcept( noexcept(JSONSerializer::from_json( std::declval(), std::declval()))); // (2) template BasicJsonType get() const; ``` 1. Explicit type conversion between the JSON value and a compatible value which is [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) and [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible). The value is converted by calling the `json_serializer` `from_json()` method. The function is equivalent to executing ```cpp ValueType ret; JSONSerializer::from_json(*this, ret); return ret; ``` This overloads is chosen if: - `ValueType` is not `basic_json`, - `json_serializer` has a `from_json()` method of the form `void from_json(const basic_json&, ValueType&)`, and - `json_serializer` does not have a `from_json()` method of the form `ValueType from_json(const basic_json&)` If the type is **not** [CopyConstructible](https://en.cppreference.com/w/cpp/named_req/CopyConstructible) and **not** [DefaultConstructible](https://en.cppreference.com/w/cpp/named_req/DefaultConstructible), the value is converted by calling the `json_serializer` `from_json()` method. The function is then equivalent to executing ```cpp return JSONSerializer::from_json(*this); ``` This overloads is chosen if: - `ValueType` is not `basic_json` and - `json_serializer` has a `from_json()` method of the form `ValueType from_json(const basic_json&)` If `json_serializer` has both overloads of `from_json()`, the latter one is chosen. 2. Overload for `basic_json` specializations. The function is equivalent to executing ```cpp return *this; ``` ## Template parameters `ValueType` : the value type to return `BasicJsonType` : a specialization of `basic_json` ## Return value 1. copy of the JSON value, converted to `ValueType` 2. a copy of `#!cpp *this`, converted into `BasicJsonType` ## Exceptions Depends on what `json_serializer` `from_json()` method throws ## Example ??? example The example below shows several conversions from JSON values to other types. There a few things to note: (1) Floating-point numbers can be converted to integers, (2) A JSON array can be converted to a standard `std::vector`, (3) A JSON object can be converted to C++ associative containers such as `std::unordered_map`. ```cpp --8<-- "examples/get__ValueType_const.cpp" ``` Output: ```json --8<-- "examples/get__ValueType_const.output" ``` ## Version history 1. Since version 2.1.0. 2. Since version 2.1.0. Extended to work with other specializations of `basic_json` in version 3.2.0.