• 回答数

    4

  • 浏览数

    146

紫衣Helen
首页 > 英语培训 > 传入参数英文

4个回答 默认排序
  • 默认排序
  • 按时间排序

再遇见67

已采纳

在程序世界中,我们经常会用到两个词条来标识变量,即Parameter和Argument。那么,现在的问题是,这两者有什么区别呢?通常我们认为,parameter是参数,而argument是参数的值。对应的中文术语是:parameter = 形参;argument = 实参。What is the difference between an argument and a 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。我们来看一个例子:1234function GetSquareArea(sideLength) { return sideLength*sideLength; } 这里,sideLength就是Parameter。当我们在调用这个方法的时候,值会传给变量,这个变量就叫Argument。例如:12var intSideLength = 4;var intSquareArea = GetSquareArea(intSideLength);程序运行的时候,intSideLength会被赋值为4,那么对于方法GetSquareArea的调用,intSideLength就是Argument。

传入参数英文

86 评论(10)

笑脸笑脸笑脸

parameter和argument是计算机英语中常见的词汇,这两者的区别如下:parameter是形参,体现在函数定义中,当出现在整个函数内都是可以使用的, 要是离开该函数则不能使用argument是实参,体现在主调函数中,当进入被调函数后,实参变量也不能使用2、parameter只有在被调用时才分配内存单元,在调用结束时,即刻释放所分配的内存单元。函数调用结束返回主调用函数后则不能再使用该形参变量。因此,形参只在函数内部有效。argument可以是变量、常量、函数、表达式等,无论实参是何种类型的量,在进行函数调用 时,它们都必须有确定的值,以便把这些值传送给形参。因此应预先用赋值,输入等办法使参数 获得确定值。扩展资料:当parameter和argument不是指针类型时,在该函数运行时,形参和实参是不同的变量,他们在内存中位于不同的位置,形参将实参的内容复制一份,在该函数运行结束的时候形参被释放,而实参内容不会改变。举例:1. 比如你定义一个函数void add(int a, int b),这里的a和b就是parameter。2. 当你进行函数调用的时候,add(1, 2),这里的1和2就是argument。

217 评论(9)

曼丽nilei

参数英文是parameterparameter音标:英 [pəˈræmɪtə(r)]美 [pəˈræmɪtɚ]名词:[数]参数; <物><数>参量; 限制因素; 决定因素第三人称复数:parametersparameter 相关例句1.It is the parameter of distribution. 这就是分布参数。2、This is a very important parameter. 这是一个非常重要的参数。3、Each input parameter should have the variable name and its value. 各输入参数应该有自己的变量名和值。

127 评论(8)

挑剔的嘴

参数 [cān shù] [词典] parameter; [例句]它包含了与两个相等带电粒子凝聚增强因子中所包含的同样参数。It involves the same parameter as that involved in the enhancement factor for coagulation of two equally charged particles.

258 评论(9)

相关问答