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

  • 相关阅读:
    swift对比object-c
    Swift : missing argument label 'xxx' in call
    Swift: missing argument label 'xxx' in call
    Swift 闭包(六)
    求教贴,一个可能很白痴的问题,有时间又很闲的大神给解决下
    Swift “ambiguous use of operator '>'”
    swift 之嵌套的理解 func chooseStepFunction(backwards: Bool) -> (Int) -> Int
    苹果新的编程语言 Swift 语言进阶(七)--枚举、结构、类
    苹果新的编程语言 Swift 语言进阶(六)--函数和闭包
    触摸板PCB制作-TM12
  • 原文地址:https://www.cnblogs.com/alexYuin/p/9067719.html
Copyright © 2011-2022 走看看