gpt4 book ai didi

c++ - 找不到头文件错误

转载 作者:行者123 更新时间:2023-11-28 06:52:58 35 4
gpt4 key购买 nike

我正在尝试测试软件中的特定功能。为此,我编写了一个小的测试文件,如下所示

#include<iostream>
#include "bignum.h"
#include "Equation.h"
#include "matrix.h"
#include "hermite.h"

using namespace std;

int main() {
matrix* mat = new matrix(3, 1, new vector<string>());
hnf(&mat);
}

我的目录和文件结构如下。 Equation.h 包括 bignum.h 而 hermite.h 包括 Equation.h 和 matrix.h。除了 Equation.h 之外的所有文件都在同一目录中,而 Equation.h 则在其他目录中。

我无法找到使用 g++ 编译 test.cpp 的正确方法。

最佳答案

您需要使用标志 -I<dir> , 替换 <dir>告诉 g++ 在哪里搜索头文件。

关于c++ - 找不到头文件错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23559880/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com