我有范围争论有点混乱,并没有真正注意何时使用其中一种,何时使用另一种。

你能告诉我吗?

答案

参数是作为方法签名(方法声明)一部分的变量。

考虑以下代码:

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

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

这里if是参数,并且anInt2.0是论据。

来自: stackoverflow.com