目录

parameter 和argument区别


目录

Argument 和 Parameter 两个词在很多文献中均翻译为参数,这是一个历史遗留问题。

但实际上 Argument 专用于 Actual Argument(实际参数,实参),Parameter 专用于 Formal Parameter(形式参数,形参)。

在上下文没有歧义的情况下,我个人的习惯会将这两个词均翻译为参数,在其他情况下使用实参和形参来对 Argument 和 Parameter 加以区分。

因此对于这句话而言可以译为:

The term parameter is used to describe the names for values that are expected to be supplied. The term argument is used for the values provided for each parameter. 形参被用于描述(在函数内)期望被提供的值的名字,而实参则被用于描述(调用函数时)提供给每个形参的值。