如何在 C++ 中的另一个函数内部调用一个函数?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/7139607/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-28 16:31:08  来源:igfitidea点击:

How do I call a function inside of another function in C++?

c++functionforward-declaration

提问by desbest

How do I call a function inside of another function in C++?

如何在 C++ 中的另一个函数内部调用一个函数?

回答by fredoverflow

I don't think this is possible.

我不认为这是可能的。

I disagree:

我不同意:

void bar()
{
}

void foo()
{
    bar();   // there, I use bar inside foo
}

If you want to use a function that hasn't been defined yet, you must declare it before you can use it:

如果要使用尚未定义的函数,则必须先声明它,然后才能使用它:

void baz();   // function declaration

void foo()
{
    baz();
}

void baz()    // function definition
{
}

回答by BrainStorm

you can do so by using lambda, new feature on the new standard C++0x

您可以通过使用lambda新标准 C++0x 上的新功能来实现

int main()
{
    auto square = [&](int x) { return x*x; };
    auto a = square(3);
    return 0;
}

http://www2.research.att.com/~bs/C++0xFAQ.html#lambda

http://www2.research.att.com/~bs/C++0xFAQ.html#lambda