argument type的意思|示意

美 / ˈɑ:ɡju:mənt taip / 英 / ˈɑrɡjəmənt taɪp /

[计] 变元类型


argument type的用法详解

英语单词argument type的用法讲解

argument type用法是指用于定义参数类型的参数声明方式。它是JavaScript中一种灵活而有效的参数定义方法,能够将函数参数的值和类型进行标准化。

argument type主要用于定义函数参数,也就是形参。它和JavaScript中传统的参数定义方式,即\"function(参数1,参数2,……)\"最大的不同是,argument type可以明确指定某个参数的类型,这样就能确保调用函数时参数的正确性。

示例如下:

function add(a:String,b:String){

return a+b;

}

上面的函数中,明确指定参数a和b的类型,都是string。因此,在调用函数时,只能传入两个string类型的参数,不能传入其他类型的参数,否则会报错。

此外,argument type也可以用来指定参数的可选值。

例如:

function color(c:String ['red','blue','green']){

console.log(c);

}

上面的函数只允许接受“red”、“blue”、“green”三种可能的参数,其他参数都会报错。

总之,argument type是定义函数参数的一种非常灵活而有效的方法,可以有效的保证函数的调用的正确性,从而提高程序的可维护性。

argument type相关短语

1、 argument type list 变元类型表

2、 hierarchy of argument type 变元类型阶层,变元类型层次

3、 argument type conversion 参数类型转换

4、 argument type check 参数类型检查

5、 type argument 类型参数

6、 Generic Type Argument 泛型型别引数,泛型类型变量,泛型类型参数

7、 actual type argument 类型参数

8、 type-argument 类型实参

9、 argument needs type override 论点需要键入凌驾

argument type相关例句

Specified argument type differs from required argument type at runtime in DLL function name.

明明是你调用函数写错了类型阿.

互联网

Examines the argument type and its fields and perform some documented operation.

检查参数类型及其域,并执行某些文档操作.

互联网

At present, the argument - type hearing in China is in an impenetrable difficulty the public more attention.

立法型听证是目前最受人们关注,也是问题最多的听证.

互联网

The argument type { 0 } could not be converted into parameter type { 1 }.

参数类型{0}未能被转换为参数类型{1}.

互联网