A parameter refers to the input value, or values, inside the function.
For example, if a function is declared as func drawLine (from fromPoint: Point, to toPoint: Point), the words fromPoint and toPoint are parameter names, because those are names to be used in the function's implementation.
(Informally, developers may use parameter interchangeably with argument)
參數是指函數內部的一個或多個輸入值。
例如,如果將一個函數聲明為func drawLine(從fromPoint:Point,到toPoint:Point),則單詞fromPoint和toPoint是參數名稱,因為它們是在函數實現中使用的名稱。
(非正式地,開發人員可以將參數與參數互換使用)