Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 C++ 新手,我有一个小问题。我一直在尝试通过使用 goto 函数尝试从一个文件中的一个位置跳转到另一个文件来让两个文件在彼此内部运行。显然,这不起作用,我想知道正确的方法。PS 我记得也使用了#include "filename.cpp" 函数。
您尝试做的事情很可能是可能的,但更有可能是错误的方法,特别是因为您说您是 C++ 新手
尽量不要使用 goto 。使用函数。