gc野马通过压力测试(只有1K单位的容量,gc作用明显)

来源:互联网 发布:pdf转换dwg软件 编辑:程序博客网 时间:2024/04/30 09:11

(defun pp (s)

(print  s)

)

 

(defun  test (n)

(if  (>  n  0)

    (+  n  (test  (-  n  1) ) )

     0

)

)

 

(defun  test (n)

(if  (>  n  0)

    (+   (test  (-  n  1) )  (test  (-  n  2) ) )

     1

)

)

 

 

 

(test  39)

(test  40)

 

原创粉丝点击