1 #include <nlohmann/json.hpp> 2 #include <iostream> 3 #include <iomanip> 4 5 using json = nlohmann::json; 6 7 int main() 8 { 9 std::cout << std::setw(4) << json::meta() << std::endl; 10 }
https://json.nlohmann.me/integration/package_managers/
标签:序列化,c++,占位,nlohmann,json,include From: https://www.cnblogs.com/dyg540/p/17640944.html