9b32f72584
As I learned in https://github.com/melpon/wandbox/issues/209, this library is already installed at Wandbox, so we need to adjust the examples to use `#include "json.hpp"` insteas of `#include <json.hpp>`.
26 lines
544 B
C++
26 lines
544 B
C++
#include "json.hpp"
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create a JSON number
|
|
json value = 17;
|
|
|
|
// explicitly getting references
|
|
auto r1 = value.get_ref<const json::number_integer_t&>();
|
|
auto r2 = value.get_ref<json::number_integer_t&>();
|
|
|
|
// print the values
|
|
std::cout << r1 << ' ' << r2 << '\n';
|
|
|
|
// incompatible type throws exception
|
|
try
|
|
{
|
|
auto r3 = value.get_ref<json::number_float_t&>();
|
|
}
|
|
catch (json::type_error& ex)
|
|
{
|
|
std::cout << ex.what() << '\n';
|
|
}
|
|
}
|