ref和out的联系及区别(转)
生活随笔
收集整理的這篇文章主要介紹了
ref和out的联系及区别(转)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
一:ref 關(guān)鍵字使參數(shù)按引用傳遞。 其效果是,當(dāng)控制權(quán)傳遞回調(diào)用方法時(shí),在方法中對(duì)參數(shù)所做的任何更改都將反映在該變量中。若要使用 ref 參數(shù),則方法定義和調(diào)用方法都必須顯式使用 ref 關(guān)鍵字。 也即是說,在方法中對(duì)參數(shù)的設(shè)置和改變將會(huì)直接影響函數(shù)調(diào)用之處(代碼①及②)。無論是函數(shù)的定義還是調(diào)用時(shí)均不可忽略關(guān)鍵字ref. 可以對(duì)比代碼: 代碼①: 1 class Program
2 {
3 static void Main(string[] args) 4 { 5 Program pg = new Program(); 6 int x = 10; 7 int y = 20; 8 pg.GetValue(ref x, ref y); 9 Console.WriteLine("x={0},y={1}", x, y); 10 11 Console.ReadLine(); 12 13 } 14 15 public void GetValue(ref int x, ref int y) 16 { 17 x = 521; 18 y = 520; 19 } 20 }
?
運(yùn)行結(jié)果為:
代碼②:
1 class Program 2 { 3 static void Main(string[] args) 4 { 5 Program pg = new Program(); 6 int x = 10; 7 int y = 20; 8 pg.GetValue(ref x, ref y); 9 Console.WriteLine("x={0},y={1}", x, y); 10 11 Console.ReadLine(); 12 13 } 14 15 public void GetValue(ref int x, ref int y) 16 { 17 x = 1000; 18 y = 1; 19 } 20 }?
由代碼① 和②的運(yùn)行結(jié)果可以看出,在方法中對(duì)參數(shù)所做的任何更改都將反映在該變量中,而在main函數(shù)中對(duì)參數(shù)的賦值卻沒有起到作用,這是不是說明不需要進(jìn)行初始化呢?來看第二點(diǎn)
二:ref定義的參數(shù)在使用前必須初始化,無論在函數(shù)定義時(shí)候參數(shù)有沒有賦予初值。這條正好區(qū)分out指定的參數(shù)可以不在調(diào)用函數(shù)的時(shí)候進(jìn)行初始化。 來看代碼③ 以及其運(yùn)行結(jié)果: 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 Program pg = new Program(); 6 int x; 7 int y; //此處x,y沒有進(jìn)行初始化,則編譯不通過。 8 pg.GetValue(ref x, ref y); 9 Console.WriteLine("x={0},y={1}", x, y); 10 11 Console.ReadLine(); 12 13 } 14 15 public void GetValue(ref int x, ref int y) 16 { 17 x = 1000; 18 y = 1; 19 } 20 }?
出現(xiàn)的錯(cuò)誤為:使用了未賦值的局部變量“x”,“y”。故可以說明ref指定的參數(shù)無論在函數(shù)定義的時(shí)候有沒有賦予初值,在使用的時(shí)候必須初始化。
三 :對(duì)out來說,第一條同樣適用。將代碼①以及②中的ref全部修改成out,則可與使用ref得到同樣的結(jié)果。 ? 四:out指定的參數(shù)必須在函數(shù)定義的時(shí)候就賦初值。否則則出現(xiàn)錯(cuò)誤。對(duì)比ref指定的參數(shù)則可以不在函數(shù)內(nèi)部進(jìn)行賦初值,在函數(shù)調(diào)用時(shí)候再賦初值也可以。 代碼④: 1 class Program 2 { 3 static void Main(string[] args) 4 { 5 Program pg = new Program(); 6 int x=10; 7 int y=233; 8 pg.Swap(out x, out y); 9 Console.WriteLine("x={0},y={1}", x, y); 10 11 Console.ReadLine(); 12 13 } 14 15 public void Swap(out int a,out int b) 16 { 17 18 int temp = a; //a,b在函數(shù)內(nèi)部沒有賦初值,則出現(xiàn)錯(cuò)誤。 19 a = b; 20 b = temp; 21 } 22 23 }?
出現(xiàn)錯(cuò)誤:使用了未賦值的out參數(shù)“a”,"b" 則在swap函數(shù)定義時(shí)候給a,b賦上初值則運(yùn)行正確。 總結(jié)以上四條得到ref和out使用時(shí)的區(qū)別是: ①:ref指定的參數(shù)在函數(shù)調(diào)用時(shí)候必須初始化,不能為空的引用。而out指定的參數(shù)在函數(shù)調(diào)用時(shí)候可以不初始化; ②:out指定的參數(shù)在進(jìn)入函數(shù)時(shí)會(huì)清空自己,必須在函數(shù)內(nèi)部賦初值。而ref指定的參數(shù)不需要。轉(zhuǎn)載于:https://www.cnblogs.com/zhengqian/p/8491909.html
總結(jié)
以上是生活随笔為你收集整理的ref和out的联系及区别(转)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python--发送邮件
- 下一篇: intellij idea 好用的快捷键