码迷,mamicode.com
首页 >  
搜索关键字:call apply    ( 12149个结果
python字典教程:setdefault方法和get方法
在python的字典对象中,可以直接使用键名获取键值,像这样: >>> d = {"x":1,"y":2} >>> d["x"] 1 >>> d["y"] 2 >>> 但如果键名不存在,则会报错: >>> d["z"] Traceback (most recent call last): File ...
分类:编程语言   时间:2021-03-30 13:57:43    阅读次数:0
取数组最大值和最小值
var arr = [1,2,3,4,5,6] console.log(Math.max.apply(null,arr.join(',').split(','))) //6 console.log(Math.min.apply(null,arr.join(',').split(','))) //1 ...
分类:编程语言   时间:2021-03-30 13:48:22    阅读次数:0
idea在artifacts中添加lib
一、点Project Structure 二、选中WEB-INF点击新建文件的图标 三、点+将所有的jar包导入进去 点ok就导入了,然后apply,ok; ...
分类:其他好文   时间:2021-03-30 13:31:57    阅读次数:0
filebeat更改mapping 字段类型
采集nginx日志的时候发现从filebeat采集的json日志到elasticsearch里面都是keyword类型,导致我模糊查询部分字段的时候无法模糊匹配,所以需要将某些字段改成text类型。 filebeat.inputs: - type: log enabled: true json.ke ...
分类:移动开发   时间:2021-03-30 13:11:53    阅读次数:0
[LeetCode] 1089. Duplicate Zeros 复写零
Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond ...
分类:其他好文   时间:2021-03-30 12:46:57    阅读次数:0
软件漏洞-跳板指令定位shellcode
软件漏洞-跳板指令定位shellcode 上一次我们写的shellcode通过栈来看是这样的 唯一的问题就是这里的返回地址是写死了的,因为栈内存的地址是经常改变的 解决如何跳转到shellcode地址的问题 在我们的shellcode指令前有一个ret指令 ret 在汇编中执行ret的指令时,需要进 ...
分类:系统相关   时间:2021-03-29 12:36:31    阅读次数:0
python 基于元类的单例
创建元类的基类(Singleton) ` from threading import RLock class SingletonType(type): single_lock = RLock() def __call__(cls, *args, **kwargs): with SingletonTy ...
分类:编程语言   时间:2021-03-29 11:54:40    阅读次数:0
使用js手动实现bind、call、apply功能
Function.prototype.mycall = function () { const [first, ...rest] = arguments; const ctx = first || window; ctx.func = this; const ret = ctx.func(...re ...
分类:移动开发   时间:2021-03-26 15:24:30    阅读次数:0
ABAP 唯一GUI ID 的使用
当在创建日志表,想生成一个永远不会重复的序列号做唯一键值,来保证每次日志记录都不会被覆盖。 有两种方式,一种带日期的方式,一种是纯GUI ID,参考如下: 1. data: lv_timestamp type timestampl, lv_time_c(30) type c, lv_date typ ...
分类:其他好文   时间:2021-03-17 14:41:40    阅读次数:0
call、bind、apply的实现
call和apply的应用场景: 判断数据类型: Object.prototype.toString用来判断类型再合适不过,借用它我们几乎可以判断所有类型的数据: function isType(data, type) { const typeObj = { '[object String]': ' ...
分类:移动开发   时间:2021-03-17 14:28:08    阅读次数:0
12149条   上一页 1 ... 8 9 10 11 12 ... 1215 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!