博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript,尾递归,return和eval
阅读量:5995 次
发布时间:2019-06-20

本文共 805 字,大约阅读时间需要 2 分钟。

function fact_iter(product, counter, max_count){
    
if(counter > max_count){
        
return product;
    }
    
else{
        fact_iter(counter*product , counter+1, max_count);
    }
    
//
return eval( (counter > max_count) ? temp = product:fact_iter(counter*product , counter+1, max_count));
}
alert(fact_iter(1,1, 6));

这样的代码返回的是undefined。

但是改写成函数式写法,就正确返回6!的值了。

eval,你懂的,在这里面不用指明返回值,不用声明变量,最后一个陌生变量就是返回值,于是正确返回了720.

把eval去掉,嗯,也能正确返回720.

说明啥来着,eval和return效果一样啊。

还说明什么,在JavaScript里,在你的尾递归里,你想在if语句里面return是行不通,用三目运算的函数式写法吧,孩子。

其实么,也是我写的语句有问题。正确的写法:

function factorial(n){
    alert(fact_iter(1,1,n));
}
function fact_iter(product, counter, max_count){
    
if(counter > max_count)
    {
        
return product;
        
    }
    
else
    {
        
return fact_iter(counter*product , counter+1, max_count);
        
    }
}
factorial(6);

 

转载于:https://www.cnblogs.com/samwu/archive/2012/04/04/2432594.html

你可能感兴趣的文章
linux C(hello world)
查看>>
微信平台BAE
查看>>
Java程序编译和运行的过程
查看>>
数学图形之牟合方盖
查看>>
configSections
查看>>
Objective-C-类(static)方法、实例方法、overwrite(覆写)、属性(property)复习...
查看>>
PHP多次调用Mysql存储过程报错解决办法
查看>>
mysql的二级索引
查看>>
Cobar是提供关系型数据库(MySQL)分布式服务的中间件
查看>>
Oracle当前用户SQL
查看>>
JavaScript学习笔记之下拉选择框的操作
查看>>
ProgressDialog使用总结
查看>>
安装完操作系统后,必备开发软件安装
查看>>
网络爬虫基本原理(一)
查看>>
让Win8自动登录免输入密码的小技巧
查看>>
RSA3:预提取数据
查看>>
MinGW 介绍
查看>>
注册域名到搜索引擎
查看>>
Eclipse中如何安装和使用GrepCode插件 (转)
查看>>
神经网络和机器学习、强人工智能
查看>>