“参数”与“参数”

可能重复:
参数或参数?

我得到了参数和参数的混合,并没有真正注意什么时候使用一个,什么时候使用另一个。

你能告诉我吗?


参数是作为方法签名(方法声明)一部分的变量。 参数是调用方法时使用的表达式。

考虑下面的代码:

void Foo(int i, float f)
{
    // Do things
}

void Bar()
{
    int anInt = 1;
    Foo(anInt, 2.0);
}

这里if是参数, anInt2.0是参数。

链接地址: http://www.djcxy.com/p/28571.html

上一篇: "Parameter" vs "Argument"

下一篇: Python variable scope error