3

好的,我很难过,主要是因为我使用的javascript不够。我知道这是一个数组指针问题(我必须在函数中复制数组......),但不知道如何解决它。我能麻烦您解释一下为什么我的 Javascript 版本不起作用而 Python 版本起作用吗?它应该反转一个数组(我知道有一个内置的),但我的问题是:Javascript 中的数组与 Python 中的数组有何不同?

Javascript (does not work): 

function reverseit(x) {

  if (x.length == 0) { return ""};
  found = x.pop();
  found2 = reverseit(x);
  return  found + " " + found2 ;

};

var out = reverseit(["the", "big", "dog"]);

// out == "the the the"

===========================

Python (works):

def reverseit(x):
    if x == []: 
        return ""
    found = x.pop()
    found2 = reverseit(x)
    return  found + " " + found2

out = reverseit(["the", "big", "dog"]);

// out == "dog big the"     
4

1 回答 1

8

它应该是...

  var found = x.pop();
  var found2 = reverseit(x);

如果不本地化这些变量,您会将它们声明为全局变量 - 并在每次reverseit调用时重写它们的值。顺便说一句,如果开发人员的浏览器支持这些错误(在我看来应该如此),则可以使用'use strict';指令 ( MDN ) 来防止这些错误。

显然,代码在 Python 中工作,因为found并且found2 本地的。

但是看看 JS 生活的光明面:你可以像这样写这个函数:

function reverseit(x) {
  return x.length 
         ? x.pop() + " " + reverseit(x) 
         : "";
};
console.log(reverseit(['the', 'big', 'dog']));

...根本没有声明任何局部变量。

于 2012-11-04T23:43:08.627 回答