头文件用到.hpp怎么调用?
本帖最后由 wsjdwjek 于 2025-3-11 15:01 编辑<火山程序 类型 = "通常" 版本 = 1 />
方法 法律排序 <公开 类型 = JSON对象类 @视窗.外部头文件 = "json_sort.h" @视窗.外部头文件 = "json.hpp" @视窗.外部源文件 = "json_sort.cpp"
@禁止流程检查 = 真>
参数 待排序json <类型 = JSON对象类>
{
@ return sort_laws(@<待排序json>);
}
C:\Users\Administrator\Desktop\排序\_int\json排序\debug\x64\project\..\\..\\..\\..\\..\\json排序\\src\\json_sort.h(5): fatal error C1083: 无法打开包括文件: “nlohmann/json.hpp”: No such file or directory
头文件
// sort_laws.h
#ifndef SORT_LAWS_H
#define SORT_LAWS_H
#include <nlohmann/json.hpp>
nlohmann::json sort_laws(const nlohmann::json& input);
#endif // SORT_LAWS_H
json_sort 这个头文件用相对路径include json.hpp,你的这几个文件没有放好位置。 Xelloss0618 发表于 2025-3-11 14:27
json_sort 这个头文件用相对路径include json.hpp,你的这几个文件没有放好位置。 ...
三个文件我都放在同一个目录的呀 wsjdwjek 发表于 2025-3-11 14:56
三个文件我都放在同一个目录的呀
你没看到它的路径,前面还有个 nlohmann 文件夹吗…自己改掉吧
页:
[1]