zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    股票代码含义
    Linux文件系统中硬链接和软链接的区别 (转)
    阿里云Linux挂载数据盘
    使用rsync命令提高文件传输效率
    JS选中清空
    各大网站收录入口| 各大搜索引擎提交 | 搜索引擎提交地址
    搜索引擎网站收录地址大全
    需求文档开发工具推荐
    实时股票数据接口
    HTML5文件拖拽上传记录
  • 原文地址:https://www.cnblogs.com/alexYuin/p/9067719.html
Copyright © 2011-2022 走看看