登山则情满于山,观海则意溢于海。这篇文章主要讲述callapplybind相关的知识,希望能为你提供帮助。
1、函数执行上下文中会多出 this,arguments 和 函数参数。
2、call、apply、bind
这三个函数的第一个参数都是this的指向对象,区别在于第二个参数。
3、使用方式
1.call
说明: 参数是直接放进去的,第二第三第n个参数全都用逗号分隔,直接放到后面
形式: func.call(thisArg,
arg1, arg2,...,argn)
2.apply
说明: 所有参数都必须放在一个数组里面传进去
形式: func.apply(thisArg, [ arg1, arg2,...,argn ])
3.bind
说明: 除了返回是函数以外,它的参数和call一样
形式: func.bind( thisArg, arg1, arg2,...,argn )()
【callapplybind】
4、总结:
三者的参数允许是各种类型,包括 函数、 对象、 字符串等
推荐阅读
- Abp.AutoMapper扩展 --static class AutoMapExtensions
- Android gradle 相关配置
- AndroidStudio导入Eclipse项目报错Error:Could not determine the class-path for interface com.android.builder
- 抖音越狱版本App下载
- Android复习
- Android中通过typeface设置字体
- Deep Learnin 7: Setting up machine learning application
- android设置主mic/副mic录音
- Execution failed for task ':app:processDebugResources'