- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有没有规范化数组返回值和变异的 JavaScript 数组库?我认为 JavaScript Array API 非常不一致。
一些方法改变数组:
var A = [0,1,2];
A.splice(0,1); // reduces A and returns a new array containing the deleted elements
有些人没有:
A.slice(0,1); // leaves A untouched and returns a new array
有些返回对变异数组的引用:
A = A.reverse().reverse(); // reverses and then reverses back
有些只是返回undefined:
B = A.forEach(function(){});
我想要的是始终改变数组并始终返回相同的数组,这样我就可以获得某种一致性并且还能够链接。例如:
A.slice(0,1).reverse().forEach(function(){}).concat(['a','b']);
我尝试了一些简单的片段,例如:
var superArray = function() {
this.length = 0;
}
superArray.prototype = {
constructor: superArray,
// custom mass-push method
add: function(arr) {
return this.push.apply(this, arr);
}
}
// native mutations
'join pop push reverse shift sort splice unshift map forEach'.split(' ').forEach(function(name) {
superArray.prototype[name] = (function(name) {
return function() {
Array.prototype[name].apply(this, arguments);
// always return this for chaining
return this;
};
}(name));
});
// try it
var a = new superArray();
a.push(3).push(4).reverse();
这对大多数变异方法都适用,但也存在问题。例如,我需要为每个不改变原始数组的方法编写自定义原型(prototype)。
所以在我做这件事的时候,我一直在想,也许以前有人做过这件事?是否已经有任何轻量级数组库可以做到这一点?如果该库还为旧浏览器的新 JavaScript 1.6 方法添加垫片,那就太好了。
最佳答案
我不认为它真的不一致。是的,它们可能有点令人困惑,因为 JavaScript 数组完成了其他语言具有单独结构(列表、队列、堆栈等)的所有事情,但它们的定义在不同语言中是非常一致的。您可以轻松地将它们分组到您已经描述的那些类别中:
push
/unshift
返回添加元素后的长度pop
/shift
返回请求的元素splice
是用于在列表中间删除/替换/插入项目的多用途工具 - 它返回已删除元素的数组。sort
和 reverse
是两种标准的就地重新排序方法。所有其他方法都不会修改原始数组:
slice
按位置获取子数组,filter
按条件获取子数组,concat
与其他数组组合创建并返回新数组<forEach
只是迭代数组,不返回任何内容every
/some
测试项目的条件,indexOf
和 lastIndexOf
搜索项目(通过相等) - 都返回结果reduce
/reduceRight
将数组项缩减为单个值并返回该值。特殊情况是:
map
缩减为一个新数组 - 它类似于 forEach
但返回结果join
and toString
reduce to a string这些方法足以满足我们的大部分需求。我们可以用它们做任何事情,而且我不知道有任何库向它们添加类似但在内部或结果方面不同的方法。大多数数据处理库(如 Underscore)仅使它们跨浏览器安全(es5-shim)并提供额外的实用方法。
What I would like is to always mutate the array and always return the same array, so I can have some kind of consistency and also be able to chain.
我想说 JavaScript 的一致性是在修改元素或长度时总是返回一个新数组。我猜这是因为对象是引用值,更改它们经常会在引用同一数组的其他作用域中引起副作用。
链接仍然是可能的,你可以使用 slice
, concat
, sort
, reverse
, filter
和 map
只需一步即可创建一个新数组。如果只想“修改”数组,只需将其重新分配给数组变量即可:
A = A.slice(0,1).reverse().concat(['a','b']);
变异方法对我来说只有一个优势:它们更快,因为它们可能更节省内存(当然,取决于实现及其垃圾收集)。因此,让我们为这些实现一些方法。作为Array subclassing既不可能也没有用,我将在 native prototype 上定义它们:
var ap = Array.prototype;
// the simple ones:
ap.each = function(){ ap.forEach.apply(this, arguments); return this; };
ap.prepend = function() { ap.unshift.apply(this, arguments); return this; };
ap.append = function() { ap.push.apply(this, arguments; return this; };
ap.reversed = function() { return ap.reverse.call(ap.slice.call(this)); };
ap.sorted = function() { return ap.sort.apply(ap.slice.call(this), arguments); };
// more complex:
ap.shorten = function(start, end) { // in-place slice
if (Object(this) !== this) throw new TypeError();
var len = this.length >>> 0;
start = start >>> 0; // actually should do isFinite, then floor towards 0
end = typeof end === 'undefined' ? len : end >>> 0; // again
start = start < 0 ? Math.max(len + start, 0) : Math.min(start, len);
end = end < 0 ? Math.max(len + end, 0) : Math.min(end, len);
ap.splice.call(this, end, len);
ap.splice.call(this, 0, start);
return this;
};
ap.restrict = function(fun) { // in-place filter
// while applying fun the array stays unmodified
var res = ap.filter.apply(this, arguments);
res.unshift(0, this.length >>> 0);
ap.splice.apply(this, res);
return this;
};
ap.transform = function(fun) { // in-place map
if (Object(this) !== this || typeof fun !== 'function') throw new TypeError();
var len = this.length >>> 0,
thisArg = arguments[1];
for (var i=0; i<len; i++)
if (i in this)
this[i] = fun.call(thisArg, this[i], i, this)
return this;
};
// possibly more
现在你可以做
A.shorten(0, 1).reverse().append('a', 'b');
关于javascript - 规范化数组方法和返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13136688/
我正在尝试创建一个包含 int[][] 项的数组 即 int version0Indexes[][4] = { {1,2,3,4}, {5,6,7,8} }; int version1Indexes[
我有一个整数数组: private int array[]; 如果我还有一个名为 add 的方法,那么以下有什么区别: public void add(int value) { array[va
当您尝试在 JavaScript 中将一个数组添加到另一个数组时,它会将其转换为一个字符串。通常,当以另一种语言执行此操作时,列表会合并。 JavaScript [1, 2] + [3, 4] = "
根据我正在阅读的教程,如果您想创建一个包含 5 列和 3 行的表格来表示这样的数据... 45 4 34 99 56 3 23 99 43 2 1 1 0 43 67 ...它说你可以使用下
我通常使用 python 编写脚本/程序,但最近开始使用 JavaScript 进行编程,并且在使用数组时遇到了一些问题。 在 python 中,当我创建一个数组并使用 for x in y 时,我得
我有一个这样的数组: temp = [ 'data1', ['data1_a','data1_b'], ['data2_a','data2_b','data2_c'] ]; // 我想使用 toStr
rent_property (table name) id fullName propertyName 1 A House Name1 2 B
这个问题在这里已经有了答案: 关闭13年前。 Possible Duplicate: In C arrays why is this true? a[5] == 5[a] array[index] 和
使用 Excel 2013。经过多年的寻找和适应,我的第一篇文章。 我正在尝试将当前 App 用户(即“John Smith”)与他的电子邮件地址“jsmith@work.com”进行匹配。 使用两个
当仅在一个边距上操作时,apply 似乎不会重新组装 3D 数组。考虑: arr 1),但对我来说仍然很奇怪,如果一个函数返回一个具有尺寸的对象,那么它们基本上会被忽略。 最佳答案 这是一个不太理
我有一个包含 GPS 坐标的 MySQL 数据库。这是我检索坐标的部分 PHP 代码; $sql = "SELECT lat, lon FROM gps_data"; $stmt=$db->query
我需要找到一种方法来执行这个操作,我有一个形状数组 [批量大小, 150, 1] 代表 batch_size 整数序列,每个序列有 150 个元素长,但在每个序列中都有很多添加的零,以使所有序列具有相
我必须通过 url 中的 json 获取文本。 层次结构如下: 对象>数组>对象>数组>对象。 我想用这段代码获取文本。但是我收到错误 :org.json.JSONException: No valu
enter code here- (void)viewDidLoad { NSMutableArray *imageViewArray= [[NSMutableArray alloc] init];
知道如何对二维字符串数组执行修剪操作,例如使用 Java 流 API 进行 3x3 并将其收集回相同维度的 3x3 数组? 重点是避免使用显式的 for 循环。 当前的解决方案只是简单地执行一个 fo
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有来自 ASP.NET Web 服务的以下 XML 输出: 1710 1711 1712 1713
如果我有一个对象todo作为您状态的一部分,并且该对象包含数组列表,则列表内部有对象,在这些对象内部还有另一个数组listItems。如何更新数组 listItems 中 id 为“poi098”的对
我想将最大长度为 8 的 bool 数组打包成一个字节,通过网络发送它,然后将其解压回 bool 数组。已经在这里尝试了一些解决方案,但没有用。我正在使用单声道。 我制作了 BitArray,然后尝试
我们的数据库中有这个字段指示一周中的每一天的真/假标志,如下所示:'1111110' 我需要将此值转换为 boolean 数组。 为此,我编写了以下代码: char[] freqs = weekday
我是一名优秀的程序员,十分优秀!