gpt4 book ai didi

c++ - 如何让两个函数相互调用 C++

转载 作者:可可西里 更新时间:2023-11-01 14:56:02 30 4
gpt4 key购买 nike

我有 2 个这样的函数在 if 循环上进行混淆:

void funcA(string str)
{
size_t f = str.find("if");
if(f!=string::npos)
{
funcB(str); //obfuscate if-loop
}
}

void funcB(string str)
{
//obfuscate if loop
funcA(body_of_if_loop); //to check if there is a nested if-loop
}

问题是如果我将 funcB 放在 之前,funcA 将无法看到 funcB 反之亦然funcA.

在此感谢任何帮助或建议。

最佳答案

你要的是forward declaration .在你的情况下:

void funcB(string str);

void funcA(string str)
{
size_t f = str.find("if");
if(f!=string::npos)
{
funcB(str); //obfuscate if-loop
}
}

void funcB(string str)
{
//obfuscate if loop
funcA(body_of_if_loop); //to check if there is a nested if-loop
}

关于c++ - 如何让两个函数相互调用 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14598812/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com