类数组

Posted xm16

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了类数组相关的知识,希望对你有一定的参考价值。

var obj = {
    ‘2‘ : 3,  
    ‘3‘ : 4,
    ‘length‘ : 2,
    ‘splice‘ : Array.prototype.splice,
    ‘push‘ : Array.prototype.push
};
obj.push(1);
obj.push(2);
console.log(obj)  // [empty × 2, 1, 2, splice: ?, push: ?]

// 原理
// Array.prototype.push = function(elem){
//     this[this.length] = elem;  // 当前元素最后位置添加类容
//     this.length ++;            // 让length 加一
// }

// obj[2] = 1;
// obj[3] = 2;

 

以上是关于类数组的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段10—— 数组的响应式方法

将数组转换为 IEnumerable<T>

web代码片段

使用片段从另一个类获取值时出现 NullPointerException [重复]

错误代码:错误域 = NSCocoaErrorDomain 代码 = 3840“JSON 文本没有以数组或对象和允许未设置片段的选项开头。”

javascript常用代码片段