91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中params,Ref,out關鍵字怎么用

發布時間:2021-09-09 16:50:10 來源:億速云 閱讀:151 作者:小新 欄目:編程語言

這篇文章主要介紹了C#中params,Ref,out關鍵字怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

關于這三個關鍵字之前可以研究一下原本的一些操作

using System;
using System.Collections.Generic;
using System.Text;
namespace ParamsRefOut
{
  class Program
  {
    static void ChangeValue(int i)
    {
      i=5;
      Console.WriteLine("The ChangeValue method changed the value "+i.ToString());
    }
    static void Main(string[] args)
    {
      int i = 10;
      Console.WriteLine("The value of I is "+i.ToString());
      ChangeValue(i);
      Console.WriteLine("The value of I is " + i.ToString());
      Console.ReadLine();
    }
  }
}

觀察運行結果發現

C#中params,Ref,out關鍵字怎么用

值并沒有被改變,也就是說此時的操作的原理可能也是跟以前C語言的函數操作是一樣的

C#中params,Ref,out關鍵字怎么用

本文主要討論params關鍵字,ref關鍵字,out關鍵字。

  1)params關鍵字,官方給出的解釋為用于方法參數長度不定的情況。有時候不能確定一個方法的方法參數到底有多少個,可以使用params關鍵字來解決問題。

using System;
using System.Collections.Generic;
using System.Text;
namespace ParamsRefOut
{
  class number
  {
    public static void UseParams(params int [] list)
    {
      for(int i=0;i<list.Length;i++)
      {
        Console.WriteLine(list[i]);
      }
    }
    static void Main(string[] args)
    {
      UseParams(1,2,3);
      int[] myArray = new int[3] {10,11,12};
      UseParams(myArray);
      Console.ReadLine();
    }
  }
}

  2)ref關鍵字:使用引用類型參數,在方法中對參數所做的任何更改都將反應在該變量中

using System;
using System.Collections.Generic;
using System.Text;
namespace ParamsRefOut
{
  class number
  {
    static void Main()
    {
      int val = 0;
      Method(ref val);
      Console.WriteLine(val.ToString());
    }
    static void Method(ref int i)
    {
      i = 44;
    }
  }
}

  3) out 關鍵字:out 與ref相似但是out 無需進行初始化。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“C#中params,Ref,out關鍵字怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永德县| 澄江县| 丁青县| 调兵山市| 铜梁县| 崇信县| 蕉岭县| 贡嘎县| 东源县| 栾川县| 新平| 自贡市| 芜湖县| 郁南县| 江口县| 齐齐哈尔市| 孟连| 兴城市| 鹿邑县| 扎鲁特旗| 大渡口区| 阿鲁科尔沁旗| 巨野县| 双峰县| 望谟县| 勐海县| 武宣县| 谢通门县| 威宁| 时尚| 隆林| 达日县| 马边| 阳江市| 浏阳市| 宜阳县| 永嘉县| 西贡区| 珠海市| 永安市| 那曲县|