我有一个特殊的问题.我有两个DLL,我们称之为DLL-A和DLL-B.
DLL-A有一个名为的函数f1(),DLL-B也有同名的函数f1().现在在DLL-A中,就像这样f1()调用f1()DLL-B.
DLL-A:
f1()
{
f1(); //this is DLL-B function, but having the same name
}
Run Code Online (Sandbox Code Playgroud)
现在我的问题是,它是f1()DLL-A 的递归调用吗?