gpt4 book ai didi

c++ - 我的第一个多文件 C++ 程序不断给我错误消息

转载 作者:行者123 更新时间:2023-11-28 06:49:18 25 4
gpt4 key购买 nike

添加.cpp

int add(int x, int y)
{
return x + y;
}

main.cpp

#include <iostream>

int main()
{
using namespace std;
cout << "The sum of 3 and 4 is: " << add(3, 4) << endl;
return 0;
}

当我尝试编译这个程序时,我在 main.cpp 的第 6 行收到一条错误消息,指出:“错误:'add' 未在此范围内声明”。

最佳答案

创建头文件

内容:

    int add(int x, y);

包含该文件 main.cpp

即#include "headerfile.h"

接下来就看编译环境了。基本上需要将每个 .cpp 编译为目标代码,然后链接它们。您需要阅读此内容,因为这因环境而异。还要阅读 header guards 以及诸如 graadle、SCONS、Makefiles 之类的东西。也很高兴了解版本控制系统,例如善变的。

我猜你今天会很忙

关于c++ - 我的第一个多文件 C++ 程序不断给我错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24319082/

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