我正在尝试在我的 C++ 项目中使用nlohmann json 。从 github 下载压缩文件后,我提取了压缩文件。我将提取的文件夹重命名为,nlohmann_json
然后将其复制到我的项目中。
github 文档说:
json.hpp 是 single_include/nlohmann 中的单个必需文件或在此处发布。您需要添加
#include <nlohmann/json.hpp>
// for convenience
using json = nlohmann::json;
所以在我的.cpp
文件中,我有以下几行:
#include "nlohmann_json/include/nlohmann/json.hpp"
using json = nlohmann::json;
但 Visual Studio 2015 IDE 显示为工具提示以下消息:
命名空间 nlohmann 没有成员 json
只是输入后nlohmann::
,我得到一个自动建议json_pointer
但不是json
。
实际上出了什么问题?