码迷,mamicode.com
首页 > 其他好文 > 详细

函数递归调用过程中的调用堆栈的情况

时间:2019-11-13 13:08:29      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:gen   ref   ext   vs2008   com   blank   递归调用   ogr   target   

为了加深对函数递归调用过程中的理解,本Demo程序特意在VS2008 C#控制台程序实现了阶乘的计算功能,用于观察函数递归调用过程中的调用堆栈的情况。

源码如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace RecursiveTset
{
    class Program
    {
        //阶乘的定义:n!=n*(n-1)!,特别的,1!=1;0!=1
        //阶乘的实现:采用递归调用方式。主要测试和观察递归过程中的函数堆栈的调用情况!
        public static int JiechengFun(int num)
        {
            int result=1;
            if (num == 0)
                result = 1;
            if (num >= 1)
                result = num * JiechengFun(num - 1);
            return result;
        }

        static void Main(string[] args)
        {
            int res = Program.JiechengFun(4);
            System.Console.WriteLine(res);
        }
    }
}

函数递归调用过程中的调用堆栈的情况截图如下:

技术图片

源码下载:https://pan.baidu.com/s/18SHyws1vX2a-fvbT-nQUtw

函数递归调用过程中的调用堆栈的情况

标签:gen   ref   ext   vs2008   com   blank   递归调用   ogr   target   

原文地址:https://www.cnblogs.com/rainbow70626/p/11847865.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!