• 11-C#笔记-函数-方法


    # 1 函数基本使用

    函数的调用方法用C++。

    主函数要在一个Class中,静态的,无返回值;

    见示例

    using System;
    
    namespace CalculatorApplication
    {
        class NumberManipulator
        {
            public int FindMax(int num1, int num2)
            {
                /* 局部变量声明 */
                int result;
    
                if (num1 > num2)
                    result = num1;
                else
                    result = num2;
    
                return result;
            }
        }
        class Test
        {
            static void Main(string[] args)
            {
                /* 局部变量定义 */
                int a = 100;
                int b = 200;
                int ret;
                NumberManipulator n = new NumberManipulator();
                //调用 FindMax 方法
                ret = n.FindMax(a, b);
                Console.WriteLine("最大值是: {0}", ret );
                Console.ReadLine();
    
            }
        }
    }
    

      

    支持递归

    ---

    # 2 函数的输入输出

    ## 1 值传递

    正常同C++

    ## 2 引用传递 ref 关键字

    using System;
    namespace CalculatorApplication
    {
       class NumberManipulator
       {
          public void swap(ref int x, ref int y)
          {
             int temp;
    
             temp = x; /* 保存 x 的值 */
             x = y;    /* 把 y 赋值给 x */
             y = temp; /* 把 temp 赋值给 y */
           }
       
          static void Main(string[] args)
          {
             NumberManipulator n = new NumberManipulator();
             /* 局部变量定义 */
             int a = 100;
             int b = 200;
    
             Console.WriteLine("在交换之前,a 的值: {0}", a);
             Console.WriteLine("在交换之前,b 的值: {0}", b);
    
             /* 调用函数来交换值 */
             n.swap(ref a, ref b);
    
             Console.WriteLine("在交换之后,a 的值: {0}", a);
             Console.WriteLine("在交换之后,b 的值: {0}", b);
     
             Console.ReadLine();
    
          }
       }
    }
    

      

    ## 3 输出 out 关键字

    using System;
    
    namespace CalculatorApplication
    {
       class NumberManipulator
       {
          public void getValue(out int x )
          {
             int temp = 5;
             x = temp;
          }
       
          static void Main(string[] args)
          {
             NumberManipulator n = new NumberManipulator();
             /* 局部变量定义 */
             int a = 100;
             
             Console.WriteLine("在方法调用之前,a 的值: {0}", a);
             
             /* 调用函数来获取值 */
             n.getValue(out a);
    
             Console.WriteLine("在方法调用之后,a 的值: {0}", a);
             Console.ReadLine();
    
          }
       }
    }
    

      

    ---

    参考:

    http://www.runoob.com/csharp/csharp-methods.html

  • 相关阅读:
    ThreadPoolExecutor线程池参数设置技巧
    函数式接口
    Mac下进入MySQL命令行
    Java8 特性
    Java8 :: 用法 (JDK8 双冒号用法)
    事务传播
    新版IDEA配置tomcat教程(2018)
    Java8 Map的compute()方法
    Spring 普通类与工具类调用service层
    简单工厂(三)——JDK源码中的简单工厂
  • 原文地址:https://www.cnblogs.com/alexYuin/p/9067719.html
Copyright © 2020-2023  润新知