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

20140830 函数 递归

时间:2014-09-01 13:58:13      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   ar   2014   div   log   sp   

  1. ref,函数形参变量的输入有两种方式:传值,传址。而ref则为传址。
  2. out,顾名思义,即输出。相当于一个函数可以有多个返回值,这是C#中特有的
  3. params,在数组形参前面使用,可以赋多个值。
  4. enum,枚举是由程序员定义的类型,与类或结构一样。

 

例如

 

 //static void Add(ref int n)
            //static void Add(int n)
          static int Add(int n,out int p)
        {
            int m = n * 10;
            p = m;
           // Console.WriteLine("Add函数1:{0}", n);
            n = n + 10;
            //Console.WriteLine("Add函数2:{0}", n);
            return n;
        }
        static void Main(string[] args)
        {
            int a = 5;
           // Console.WriteLine("Main函数1:{0}", a);
           // Add(a);
           // Add(ref a);
            int b;
            a = Add(a,out b );

            Console.WriteLine("a={0}b={1}", a, b);
           // Console.WriteLine("Main函数2:{0}", a);

递归,递归的特点就是自己调用自己;return 是将数值返回上一级

例如:

        static int taozi(int day)
        {
            if (day == 10)
            {
                return 1;
            }

           int now=( taozi(day + 1)+1)*2;
           return now;
        }
        static void Main(string[] args)
        {
            //递归
            int n = taozi(1);
            Console.WriteLine("公园里有{0}个桃子", n);

 

20140830 函数 递归

标签:style   blog   color   使用   ar   2014   div   log   sp   

原文地址:http://www.cnblogs.com/jackjms/p/3949105.html

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