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>`.
33 lines
803 B
C++
33 lines
803 B
C++
#include "json.hpp"
|
|
|
|
using json = nlohmann::json;
|
|
|
|
int main()
|
|
{
|
|
// create JSON values
|
|
json j_null;
|
|
json j_boolean = true;
|
|
json j_number_integer = 17;
|
|
json j_number_float = 23.42;
|
|
json j_object = {{"one", 1}, {"two", 2}};
|
|
json j_array = {1, 2, 4, 8, 16};
|
|
json j_string = "Hello, world";
|
|
|
|
// call clear()
|
|
j_null.clear();
|
|
j_boolean.clear();
|
|
j_number_integer.clear();
|
|
j_number_float.clear();
|
|
j_object.clear();
|
|
j_array.clear();
|
|
j_string.clear();
|
|
|
|
// serialize the cleared values()
|
|
std::cout << j_null << '\n';
|
|
std::cout << j_boolean << '\n';
|
|
std::cout << j_number_integer << '\n';
|
|
std::cout << j_number_float << '\n';
|
|
std::cout << j_object << '\n';
|
|
std::cout << j_array << '\n';
|
|
std::cout << j_string << '\n';
|
|
}
|