我正在从 PHP 切换到 C++,我有这个问题。
我有 main.cpp、true.cpp、false.cpp 和 header.h。
header.h 有一个函数“Function_go_to_requested_page.cpp()”
main.cpp 看起来像这样
#include header.h
bool x;
cin>>x;
Function_go_to_requested_page(x) // It should take to page true.cpp if x=1 else to false.cpp
我不知道如何在头文件中定义这个函数,因为我将在 true.cpp 和 false.cpp 中调用这个函数。
谢谢你的时间。