作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 main.cpp
和 add.cpp
add.h
文件
当我尝试包含 add.h
时,出现以下编译错误
main.cpp:2:10: fatal error: add.h: No such file or directory
2 | #include <add.h>
| ^~~~~~~
compilation terminated.
这是代码:
main.cpp
#include <iostream>
#include <add.h>
using namespace std;
int main()
{
cout << "The sum of 3 and 4 is " << add(3, 4) << endl;
return 0;
}
add.cpp
int add(int x, int y)
{
return x + y;
};
add.h
int add(int x, int y);
最佳答案
#include <add.h>
导致编译器在系统包含目录中搜索文件 add.h
,但不是当前目录。如果你想包含一个文件add.h
在当前目录中,使用:
#include "add.h"
关于c++ - 当我尝试包含头文件时,为什么会出现错误 "No such file or directory"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65948493/
我是一名优秀的程序员,十分优秀!