Sha256: 42e988a63183c37bca2db46e8af9e8065d23b98ea6dc957ae799c767401e5171
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
#include <iostream> #include <unordered_map> #include <nlohmann/json.hpp> using json = nlohmann::json; int main() { // create a JSON value with different types json json_types = { {"boolean", true}, { "number", { {"integer", 42}, {"floating-point", 17.23} } }, {"string", "Hello, world!"}, {"array", {1, 2, 3, 4, 5}}, {"null", nullptr} }; // use explicit conversions auto v1 = json_types["boolean"].get<bool>(); auto v2 = json_types["number"]["integer"].get<int>(); auto v3 = json_types["number"]["integer"].get<short>(); auto v4 = json_types["number"]["floating-point"].get<float>(); auto v5 = json_types["number"]["floating-point"].get<int>(); auto v6 = json_types["string"].get<std::string>(); auto v7 = json_types["array"].get<std::vector<short>>(); auto v8 = json_types.get<std::unordered_map<std::string, json>>(); // print the conversion results std::cout << v1 << '\n'; std::cout << v2 << ' ' << v3 << '\n'; std::cout << v4 << ' ' << v5 << '\n'; std::cout << v6 << '\n'; for (auto i : v7) { std::cout << i << ' '; } std::cout << "\n\n"; for (auto i : v8) { std::cout << i.first << ": " << i.second << '\n'; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
simdjson-0.3.0 | vendor/simdjson/dependencies/json/doc/examples/get__ValueType_const.cpp |