gpt4 book ai didi

c++ - 如何在 VS Code 中创建 C++ 项目并链接主函数、函数和 header ?

转载 作者:行者123 更新时间:2023-11-28 04:16:30 28 4
gpt4 key购买 nike

我无法在 Visual Studio Code 中创建多文件项目。

我尝试了多种扩展、手动创建文件夹、链接到头文件的路径。结果是不可能编译任何东西。

我希望它以与 VS 教程中类似的方式进行操作:https://www.learncpp.com/cpp-tutorial/programs-with-multiple-code-files/

主要.cpp:

#include <iostream>
#include <functions.h>

using namespace std;

int main()
{

cout << "return value is: " << add(3,4);
cout << "\nreturn value is: " << add(1.2,3.4);
cout << "\nreturn value is: " << add(5);

return 0;
}

函数.cpp:

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

int add ( int x)
{
return add(1.2,3.4) + x;
}

函数.h:

double add ( double x, double y);
int add ( int x);

我想要编译整个东西,没有别的。现在我收到一个错误,因为这些文件没有作为项目链接。我怎样才能以与提供的链接类似的方式进行操作?

最佳答案

因为 VScode 不是 IDE,所以您不能在 VScode 中执行与在 VS 中相同的操作。因此,唯一可行的办法是:

#include "filename.cpp"

但在教程中,这被描述为错误的,因此我建议您切换您的编程平台。糟透了,我也不得不这样做。

关于c++ - 如何在 VS Code 中创建 C++ 项目并链接主函数、函数和 header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56478965/

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