parameter中文意思(parameter是什么意思?)

网友提问最佳回答:

n.界限,范围;参数,变量;(统计)人口参数 造句:If you have enough RAM, set the value of this parameter as large as possible to decrease the indexing time dramatically.如果你有足够的内存。

文章目录:

  • 1、parameter中文意思
  • 2、parameter是什么意思?
  • 3、parameter和argument的区别

一、parameter中文意思

n.界限,范围;参数,变量;(统计)人口参数

造句:

If you have enough RAM, set the value of this parameter as large as possible to decrease the indexing time dramatically. 

如果你有足够的内存,请将该参数的值设置得尽可能大以显著减少索引时间。

If this were more than a demo, some other logic would choose the parameter, perhaps prompting the user to supply the information. 

如果这不仅仅是一个演示的话,某些其他的逻辑将选择参数,可能会提示用户提供该信息。

二、parameter是什么意思?

参(变)数;参(变)量 (字典里是这么说的) 1.参(变)数,参(变)量[C]
2.因素,特征[C]
3.界限 应该跟帕、米都没有直接的关系
就是作为一个名词,有参数、变量的意思

简单理解就是
如parameter of ****,即指***的参数 parameter英音:[pə'ræmitɚ]美音:[pə'ræmətɚ
n. 1.【数】【物】参(变)数,参(变)量[C]
2.因素,特征[C]
3.界限

三、parameter和argument的区别

1、parameter是指函数定义中参数,而argument指的是函数调用时的实际参数。

2、函数声明的变量时候叫Parameter, 函数调用的变量时候叫Argument。

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.
当调用方法时,传给变量的值称为引数。

parameter和argument是计算机英语中常见的词汇,这两者的区别如下:

  1. parameter是形参,体现在函数定义中,当出现在整个函数内都是可以使用的, 要是离开该函数则不能使用

argument是实参,体现在主调函数中,当进入被调函数后,实参变量也不能使用

2、parameter只有在被调用时才分配内存单元,在调用结束时,即刻释放所分配的内存单元。函数调用结束返回主调用函数后则不能再使用该形参变量。因此,形参只在函数内部有效。

argument可以是变量、常量、函数、表达式等,无论实参是何种类型的量,在进行函数调用           时,它们都必须有确定的值,以便把这些值传送给形参。因此应预先用赋值,输入等办法使参数       获得确定值。

扩展资料:

当parameter和argument不是指针类型时,在该函数运行时,形参和实参是不同的变量,他们在内存中位于不同的位置,形参将实参的内容复制一份,在该函数运行结束的时候形参被释放,而实参内容不会改变。

举例:

1. 比如你定义一个函数void add(int a, int b),这里的a和b就是parameter。 

2. 当你进行函数调用的时候,add(1, 2),这里的1和2就是argument。

参考资料来源:百度百科-argument


以上就是小编对于parameter的相关信息的介绍,希望能对大家有所帮助。

本文到此结束,希望对大家有所帮助呢。

获赞数:301

收藏数:57

回答时间:2024-02-27 02:37:19