back.cpp
Go to the documentation of this file.
00001 #include <json.hpp>
00002 
00003 using json = nlohmann::json;
00004 
00005 int main()
00006 {
00007     // create JSON values
00008     json j_null;
00009     json j_boolean = true;
00010     json j_number_integer = 17;
00011     json j_number_float = 23.42;
00012     json j_object = {{"one", 1}, {"two", 2}};
00013     json j_object_empty(json::value_t::object);
00014     json j_array = {1, 2, 4, 8, 16};
00015     json j_array_empty(json::value_t::array);
00016     json j_string = "Hello, world";
00017 
00018     // call back()
00019     //std::cout << j_null.back() << '\n';          // would throw
00020     std::cout << j_boolean.back() << '\n';
00021     std::cout << j_number_integer.back() << '\n';
00022     std::cout << j_number_float.back() << '\n';
00023     std::cout << j_object.back() << '\n';
00024     //std::cout << j_object_empty.back() << '\n';  // undefined behavior
00025     std::cout << j_array.back() << '\n';
00026     //std::cout << j_array_empty.back() << '\n';   // undefined behavior
00027     std::cout << j_string.back() << '\n';
00028 }


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:01