enjoy life and code

c++

nlohmann/json JSON for Modern C++ #include <iostream> #include <fstream> #include <vector> #include <optional> #include "json.hpp" namespace nl = nlohmann; enum...

刚刚毕业,开始了社畜生涯,谁能想到公司使用的还是VS2010(有限的C++11支持),预期会转移到VS2015(何年何月)。本文记录一下那些常用的C++11后添加的功能特性。(每天写着写着老是被编译器暴打,希望以后能用上现代C++)auto 关键字C++11 ,VS2010 支持,,常用于遍历等情况#include <iostream> #include <vector&g...