gpt4 book ai didi

c++ - 无法使用代码块编译 C++ 类

转载 作者:太空狗 更新时间:2023-10-29 21:35:34 27 4
gpt4 key购买 nike

每次我尝试用 C++ 编译类时,我都会收到此错误:

||=== Build file: "no target" in "no project" (compiler: unknown) ===|

这是我的 Classes 类的代码:

#include <iostream>
#include "Cat.h"
using namespace std;

int main() {
Cat cat1;
cat1.speak();
cat1.jump();

return 0;
}

这是我的 header Cat.h 的代码:

#ifndef CAT_H_
#define CAT_H_

class Cat {
public:
void speak();
void jump();
};

#endif /* CAT_H_ */

这是我的 Cat 类的代码:

#include <iostream>
#include "Cat.h"
using namespace std;

void Cat::speak() {
cout << "Meouwww!!!" << endl;
}

void Cat::jump() {
cout << "Jumping to top of bookcase" << endl;
}

最佳答案

此错误与您的代码无关。这是与您的环境有关的问题。有 2 个常见错误会导致这种情况:

没有与您的 IDE 关联的编译器,因此请尝试安装一个。或者你应该下载集成了 mingw 编译器的 codeBlocks

你没有创建项目所以尝试创建一个项目然后添加这个文件。

我希望我回答了你的问题。

关于c++ - 无法使用代码块编译 C++ 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42182344/

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