如何在 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
How do I call a function inside of another function in C++?
提问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;
}