在C++中,可以通過以下步驟調用其他文件中的函數:
以下是一個示例:
// other_file.h
#ifndef OTHER_FILE_H
#define OTHER_FILE_H
void otherFunction(); // 聲明函數
#endif
// other_file.cpp
#include "other_file.h"
#include <iostream>
void otherFunction() {
std::cout << "This is the other function." << std::endl;
}
// main.cpp
#include "other_file.h"
int main() {
// 調用函數
otherFunction();
return 0;
}
在上面的示例中,"main.cpp"文件包含了"other_file.h"頭文件,并在main函數中調用了"otherFunction"函數。