字符串上的Array.sort

时间:2013-07-29 02:09:00

标签: javascript

有谁知道为什么在字符串上调用Array.sort是违法的?

[].sort.call("some string")
// "illegal access"

但是调用Array.map,Array.reduce或Array.filter可以吗?

[].map.call("some string", function(x){ 
    return String.fromCharCode(x.charCodeAt(0)+1); 
});
// ["t", "p", "n", "f", "!", "t", "u", "s", "j", "o", "h"]

[].reduce.call("some string", function(a, b){ 
    return (+a === a ? a : a.charCodeAt(0)) + b.charCodeAt(0);
})
// 1131

[].filter.call("some string", function(x){ 
    return x.charCodeAt(0) > 110; 
})
// ["s", "o", "s", "t", "r"]

2 个答案:

答案 0 :(得分:6)

字符串是不可变的。你实际上不能改变一个字符串;特别是,Array.prototype.sort会修改要排序的字符串,因此您不能这样做。您只能创建一个新的不同字符串。

x = 'dcba';
// Create a character array from the string, sort that, then
// stick it back together.
y = x.split('').sort().join('');

答案 1 :(得分:3)

因为字符串是不可变的。

您提到的函数返回一个新对象,它们不会更新字符串。

当然,直接对字符串进行排序很容易:

var sorted = "some string".split("").sort().join("");