我对 Linux 编程很陌生。我正在使用以下代码编译一个简单的 C++ 代码g++
:
#include“recip.hpp”
#include<cassert>
double recip (int i) {
// I should be non-zero.
assert (i != 0);
return 1.0/i;
}
该文件recip.hpp
存在于我的当前目录中。我不明白为什么会出现错误:
recip.cpp:1:9: error: #include expects "FILENAME" or <FILENAME>
怎么了?