在C++中,要调用一个全局函数,您需要首先确保该函数在调用之前已经被声明。通常,全局函数应该在某个头文件(.h)中被声明,然后在其他源文件(.cpp)中被定义。这是一个简单的示例:
- 创建一个头文件(例如:
global_functions.h
),并在其中声明全局函数:
#ifndef GLOBAL_FUNCTIONS_H
#define GLOBAL_FUNCTIONS_H
int add(int a, int b);
#endif // GLOBAL_FUNCTIONS_H
- 在一个源文件(例如:
global_functions.cpp
)中定义全局函数:
#include "global_functions.h"
int add(int a, int b) {
return a + b;
}
- 在需要使用全局函数的其他源文件中(例如:
main.cpp
),包含头文件并使用函数:
#include#include "global_functions.h" int main() { int x = 5; int y = 3; int sum = add(x, y); std::cout << "The sum of "<< x << " and "<< y << " is: " << sum << std::endl; return 0; }
在这个例子中,我们定义了一个名为add
的全局函数,它接受两个整数参数并返回它们的和。我们在global_functions.h
中声明了这个函数,然后在global_functions.cpp
中定义了它。最后,在main.cpp
中,我们包含了头文件并使用add
函数计算两个整数的和。