json/doc/examples/is_string.cpp

28 lines
840 B
C++
Raw Normal View History

#include "json.hpp"
2015-06-21 00:59:33 +02:00
using json = nlohmann::json;
2015-06-21 00:59:33 +02:00
int main()
{
// create JSON values
json j_null;
json j_boolean = true;
json j_number_integer = 17;
json j_number_float = 23.42;
2016-01-26 20:07:03 +01:00
json j_number_unsigned_integer = 12345678987654321u;
2015-06-21 00:59:33 +02:00
json j_object = {{"one", 1}, {"two", 2}};
json j_array = {1, 2, 4, 8, 16};
json j_string = "Hello, world";
// call is_string()
std::cout << std::boolalpha;
std::cout << j_null.is_string() << '\n';
std::cout << j_boolean.is_string() << '\n';
std::cout << j_number_integer.is_string() << '\n';
2016-01-26 20:07:03 +01:00
std::cout << j_number_unsigned_integer.is_string() << '\n';
2015-06-21 00:59:33 +02:00
std::cout << j_number_float.is_string() << '\n';
std::cout << j_object.is_string() << '\n';
std::cout << j_array.is_string() << '\n';
std::cout << j_string.is_string() << '\n';
}