Argument 與 Parameter 差異
Code 程式基礎: 定義 Argument 與 Parameter 差異
Categories:
名詞 | 說明 |
---|---|
Parameter | 定義在函式中的參數 |
Argument | 實際要傳給函式的變數 |
// Parameter
public void MyMethod(string thisIsParameter) { }
//...
// Argument
string thisIsArgument = "this is argument";
myClass.MyMethod(thisIsArgument);