作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这可能是一个非常新手的问题,但我没有找到答案。
我需要存储一个列表,然后在同一指针下将其替换为另一个列表。
最佳答案
可以通过references完成:
let fact n =
let result = ref 1 in (* initialize an int ref *)
for i = 2 to n do
result := i * !result (* reassign an int ref *)
done;
!result
let fact n =
let rec loop i acc =
if i > n then acc
else loop (i+1) (i*acc) in
loop 2 1
关于ocaml - 如何在OCaml中保存和更改变量的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10002471/
我是一名优秀的程序员,十分优秀!