根据网上一些资料,对parameter和argument的区别,做如下的简单说明。
1. parameter是指函数定义中参数,而argument指的是函数调用时的实际参数。
2. 简略描述为:parameter=形参(formal parameter), argument=实参(actual parameter)。
3. 在不很严格的情况下,现在二者可以混用,一般用argument,而parameter则比较少用。 While defining method, variables passed in the method are called parameters.
当定义方法时,传递到方法中的变量称为参数.
While using those methods, values passed to those variables are called arguments.
当调用方法时,传给变量的值称为引数.(有时argument被翻译为“引数“)
相关文章
- 02-18[React] Create a Query Parameter Modal Route with React Router
- 02-18django 报错“ init() takes 1 positional argument but 2 were given “
- 02-18【转载】#273 - Parameter Modifier Summary
- 02-18-bash: /bin/rm: Argument list too long的解决办法【转】
- 02-18记录 TypeError: render() got an unexpected keyword argument 'renderer' 错误
- 02-18Error: Encountered an improper argument”的解决方法
- 02-18解决:qemu_pipe_open_ns:62: Could not connect to the ‘pipe:qemud:network‘ service: Invalid argument 202
- 02-18[TypeScript] Infer the Return Type of a Generic Function Type Parameter
- 02-18[Python] Pitfalls: About Default Parameter Values in Functions
- 02-18Graph Convolutional Networks with Argument-Aware Pooling for Event Detection[AAAI 2018]阅读笔记