關於C#中三個關鍵字params,Ref,out的詳細介紹

來源:互聯網
上載者:User
本文主要討論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關鍵字。

  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 無需進行初始化。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.