gpt4 book ai didi

c++ - C 和 C++ 中的 "Variable was not declared in this scope"

转载 作者:太空狗 更新时间:2023-10-29 20:12:09 30 4
gpt4 key购买 nike

我今天发现了 C 和 C++ 之间的区别。我把程序分成两个不同的文件,这是我的 C 测试:

/* in file main.c*/
#include <stdio.h>

int main()
{
int a = 3, b = 4;
int c = sum(a, b);
printf("%d\n", c);
}

/* In file sum.c */
#include <stdio.h>

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

然后,我编译了它们gcc main.c sum.c,没有错误,结果是正确的。以下是我的 C++ 测试,我也将它们分开在两个不同的文件中:

/* in file main.cpp*/
#include <iostream>

int main()
{
int a = 3, b = 4;
int c = sum(a, b);
std::cout << c << std::endl;
}

/* In file sum.cpp */
#include <iostream>

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

编译它们 g++ main.cpp sum.cpp。发生错误:error: ‘sum’ was not declared in this scope。如果我在文件 main.cpp 中放置声明 int sum(int, int),则不会发生错误。为什么 C 和 C++ 之间存在如此大的差异?解决它的最佳方法是什么?

最佳答案

这是 C++ 引入的一项功能:除非您确实看过声明或定义,否则不要假设您知道函数签名。使得在编译器和链接过程中更早地报告不正确的函数使用变得更容易,并且使用 C++ 名称修饰需要确切的参数类型来知道代码需要链接到哪个符号——类型确定基于与候选者的匹配,具有各种可能的标准转换/隐式构造/隐式转换。

解决这个问题的正确方法是创建一个 sum.h头文件:

#ifndef SUM_H
#define SUM_H
int sum(int, int);
#endif

这应该包含在第一行或 sum.cpp (因此,如果 sum.h 内容演变为依赖于 <iostream> 内容但忘记包含它本身,您将得到一个错误),并且在 main.cpp 中根据需要在另一个包含之前或之后添加(我敢说大多数人会放在后面,但这是一种风格选择)。

关于c++ - C 和 C++ 中的 "Variable was not declared in this scope",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29113369/

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