您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)C#中參數(shù)數(shù)組、引用參數(shù)和輸出參數(shù)的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
參數(shù)數(shù)組
在C#中,可以為函數(shù)指定一個(gè)不定長的參數(shù),這個(gè)參數(shù)是函數(shù)定義中的最后一個(gè)參數(shù),這個(gè)參數(shù)叫做參數(shù)數(shù)組。
下面是一個(gè)例子:
namespace Ch7Ex2 { class Program { static int SumVals(params int[] vals) { int sum = 0; foreach (int val in vals) { sum += val; } return sum; } static void Main(string[] args) { int sum = SumVals(1, 2, 3, 4, 5); Console.WriteLine($"Summed Values = {sum}"); Console.ReadKey(); } } }
函數(shù)SumVals有一個(gè)參數(shù)數(shù)組,即vals,在定義該參數(shù)時(shí),需要使用params參數(shù)。在調(diào)用該函數(shù)時(shí),可以給參數(shù)輸入傳入多個(gè)實(shí)參。
使用分散式傳參時(shí),編譯器做如下事:
1)接受實(shí)參列表,用它們?cè)诙阎袆?chuàng)建并初始化一個(gè)數(shù)組。
2)把數(shù)組的引用保存到棧中的形參里。
3)如果在對(duì)應(yīng)的形參數(shù)組的位置沒有實(shí)參,編譯器會(huì)創(chuàng)建一個(gè)有零個(gè)元素的數(shù)組來使用。
4)如果數(shù)組參數(shù)是值類型,那么值被復(fù)制,實(shí)參不受方法內(nèi)部的影響。
5)如果數(shù)組參數(shù)是引用類型,那么引用被復(fù)制,實(shí)參引用的對(duì)象可以受到方法內(nèi)部的影響。
在使用數(shù)組式傳參時(shí),編譯器使用你的數(shù)據(jù)而不是重新創(chuàng)建一個(gè)。即相當(dāng)引用參數(shù)。
引用參數(shù)
可以通過引用傳遞參數(shù),需要使用ref關(guān)鍵字。
下面是一個(gè)例子:
namespace MyProgram { class Program { static void SwapInts (ref int a, ref int b) { int temp = b; b = a; a = temp; } static void Main(string[] args) { int a = 1; int b = 2; Console.WriteLine($"a = {a}, b = "); SwapInts(ref a, ref b); Console.WriteLine($"a = {a}, b = "); Console.ReadKey(); } } }
這是一個(gè)簡單的交換兩個(gè)值的程序,由于函數(shù)SwapInts使用了引用參數(shù),所以可以在函數(shù)中修改變量a和b的值,需要注意的是,在調(diào)用函數(shù)時(shí)也要使用ref傳遞引用參數(shù)。
輸出參數(shù)
輸出參數(shù)使用out關(guān)鍵字,它的效果與引用參數(shù)幾乎相同,不同點(diǎn)是:
引用參數(shù)的實(shí)參必須是已經(jīng)賦值的變量,而輸出參數(shù)不必。
函數(shù)使用輸出參數(shù)時(shí),應(yīng)該把它看作是未賦值的。
下面是一個(gè)例子:
namespace MyProgram { class Program { static int MaxValue (int[] intArray, out int maxIndex) { int maxValue = intArray[0]; maxIndex = 0; for (int i = 0; i < intArray.Length; i++) { if (intArray[i] > maxValue) { maxValue = intArray[i]; maxIndex = i; } } return maxValue; } static void Main(string[] args) { int maxIndex; int[] intArray = { 12, 45, 23, 77, 73 }; int maxValue = MaxValue(intArray, out maxIndex); Console.WriteLine($"maxValue = {maxValue}, maxIndex = {maxIndex}."); Console.ReadKey(); } } }
這個(gè)函數(shù)將一個(gè)數(shù)組中最大值的索引作為輸出參數(shù),返回最大值。
關(guān)于“C#中參數(shù)數(shù)組、引用參數(shù)和輸出參數(shù)的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。