object.cpp 701 B

12345678910111213141516171819202122232425262728
  1. #include <iostream>
  2. #include <nlohmann/json.hpp>
  3. using json = nlohmann::json;
  4. int main()
  5. {
  6. // create JSON objects
  7. json j_no_init_list = json::object();
  8. json j_empty_init_list = json::object({});
  9. json j_list_of_pairs = json::object({ {"one", 1}, {"two", 2} });
  10. // serialize the JSON objects
  11. std::cout << j_no_init_list << '\n';
  12. std::cout << j_empty_init_list << '\n';
  13. std::cout << j_list_of_pairs << '\n';
  14. // example for an exception
  15. try
  16. {
  17. // can only create an object from a list of pairs
  18. json j_invalid_object = json::object({{ "one", 1, 2 }});
  19. }
  20. catch (json::type_error& e)
  21. {
  22. std::cout << e.what() << '\n';
  23. }
  24. }