日期:2014-05-16 浏览次数:20381 次
众说周知,Java语言中会对传入方法的参数进行类型检查,而javascript却并不支持自动类型检查。但实际上我们可以通过一些技巧实现相应的功能。
实现这个功能要用到3个关键字或属性:typeof, argument, constructor:
对传入参数进行类型检查。
定义一个函数:
//用一个变量类型列表严格检查一个参数列表 function strict(types,args){ //保证类型的数量和参数的数量匹配 if(types.length!=args.length){ //否则抛出一个有用的异常 throw "Invalid number of arguments. Expected "+types.length+" ,Received "+args.length+" instead"; } //遍历所有参数列表,检查它们的类型 for(int i=0;i<types.length;i++){ if(args[i]!=types[i]){ throw "Invalid type of arguments.Expected "+types[i].name+" ,Received "+args[i].constructor.name+" instead"; } } }?
?