【linux】Linux 中的排序命令sort
各位专家好:
为什么我在用sort时的结果不正确呢?最后一个数据为什么没有参与排序?
谢谢!
回答
nodejs代码:
var wsc = [];var server = require("http").createServer();
var ws = require('ws');
server.listen(3000);
wss = new ws.Server({
"server" : server
});
wss.on("connection", function(connection) {
/* 如何能知道CONNECTION的客户端IP地址?URL等信息? */
console.log("INFO:输入[" + connection + "]");
/* 2015/6/3 */
wsc.push(connection);
if (wsc.length > 1) {
data = JSON.stringify({
"event" : "login"
});
connection.send(data);
}
connection.on("message", function(message) {
for ( var int = 0; int < wsc.length; int++) {
try {
if (wsc[int] != connection) {
wsc[int].send(message);
}
} catch (e) {
}
}
});
});
以上是 【linux】Linux 中的排序命令sort 的全部内容, 来源链接: utcz.com/a/85738.html