我试图使用更短的语法并避免到处使用 std:: ,所以我开始使用新的别名语法。在一些例子中,我看到人们这样使用它:
std::
using json = nlohmann::json;
我用 std:: 试过了,但是用下面的代码:
#include <iostream> using cout = std::cout;