我能够编译单个文件代码,但不能编译任何具有单独文件类的代码。这适用于代码块,但不适用于崇高文本。我找不到关于这个主题的任何信息,所以我在这里问。
这是我的代码(全部在一个文件夹中):
#include <iostream>
#include "Cat.h"
using namespace std;
int main()
{
Cat c;
cout << "Hello world!" << endl;
return 0;
}
#include <iostream>
#include "Cat.h"
using namespace std;
Cat::Cat()
{
cout << "i am cat bboiii";
}
#ifndef CAT_H
#define CAT_H
class Cat
{
public:
Cat();
};
#endif // CAT_H
答案 0 :(得分:0)
您的问题绝对与您的Makefile
有关。每当您将代码拆分为头文件和源文件时,您需要告诉编译器在哪里找到这些头文件。
g++ -I/path/to/header Cat.cpp main.cpp -o Cat
-I
标志告诉编译器从您提供的路径中获取include
头文件。如果您的所有文件都在一个文件夹中(在您的情况下就是这样),您只需将它们编译为
g++ -I. Cat.cpp main.cpp -o Cat
其中.
代表当前目录或
g++ Cat.cpp main.cpp -o Cat
因为编译器默认在当前目录中查找标头。随着项目规模的增长,您需要准备好Makefile
以自动化构建过程。最简单的Makefile将是
all:
g++ Cat.cpp main.cpp -o Cat
然后只需在包含makefile的目录中运行make
。我建议你阅读this answer如何制作实用的文件。