递归函数的javascript返回
Posted
技术标签:
【中文标题】递归函数的javascript返回【英文标题】:javascript return of recursive function 【发布时间】:2012-05-29 23:22:36 【问题描述】:讨厌为上一个问题的扩展打开一个新问题:
function ctest()
this.iteration = 0;
this.func1 = function()
var result = func2.call(this, "haha");
alert(this.iteration + ":" + result);
var func2 = function(sWord)
this.iteration++;
sWord = sWord + "lol";
if ( this.iteration < 5 )
func2.call(this, sWord);
else
return sWord;
这返回迭代 = 5 但结果未定义?这怎么可能?我明确返回 sWord。它应该返回“hahalollollollollol”并且只是为了仔细检查,如果我在返回 sWord 之前发出警报(sWord),它会正确显示它。
【问题讨论】:
这能回答你的问题吗? Recursive function returns undefined 【参考方案1】:您的外部函数没有return
语句,因此它返回undefined
。
【讨论】:
【参考方案2】:你必须一直返回堆栈:
func2.call(this, sWord);
应该是:
return func2.call(this, sWord);
【讨论】:
【参考方案3】:需要返回递归的结果,否则方法会隐式返回undefined
。请尝试以下操作:
function ctest()
this.iteration = 0;
this.func1 = function()
var result = func2.call(this, "haha");
alert(this.iteration + ":" + result);
var func2 = function(sWord)
this.iteration++;
sWord = sWord + "lol";
if ( this.iteration < 5 )
return func2.call(this, sWord);
else
return sWord;
【讨论】:
【参考方案4】:保持简单:)
your code modified in JSFiddle
iteration = 0;
func1();
function func1()
var result = func2("haha");
alert(iteration + ":" + result);
function func2 (sWord)
iteration++;
sWord = sWord + "lol";
if ( iteration < 5 )
func2( sWord);
else
return sWord;
return sWord;
【讨论】:
以上是关于递归函数的javascript返回的主要内容,如果未能解决你的问题,请参考以下文章
使用arguments属性的递归Javascript函数给出了正确的答案,但返回undefined