ref和out均是傳址呼叫,不同點在於:
ref在傳入前必須賦值
out在傳入前不必賦值,但是在返回的時候因為之前沒***被賦值,所以返回前必須賦值
using system;using system.collections.generic;
using system.linq;
using system.text;
static void reftest(ref int x, ref int y)
public static void main()
;b=", a, b);
int c = 11, d = 22;
outtest(out c, out d);
console.writeline("c=;d=", c, d);
//ref test
int m, n;
//reftest(ref m, ref n);
//上面這行會出錯,ref使用前,變數必須賦值
int o = 11, p = 22;
reftest(ref o, ref p);
console.writeline("o=;p=", o, p);}}
//ref在傳入前必須賦值
//out在傳入前不必賦值,但是在返回的時候因為之前沒***被賦值,所以返回前必須賦值
}
ref 和out傳參的不同
今天又遇到這個問題了,問了問同事,他說最近面試的時候,也問道他了,於是給我講了講,現在大概是記住了,記錄下來,以備自用。首先是看下面的code例子 string b bb public void a ref b string d public void c out d 方法a是引用參 數b但是 b必...
ref和out的使用
c 程式設計師參考 ref c 參考 ref 關鍵字使引數按引用傳遞。其效果是,當控制權傳遞 用方法時,在方法中對引數所做的任何更改都將反映在該變數中。若要使用 ref 引數,則方法定義和呼叫方法都必須顯式使用 ref 關鍵字。例如 class refexample static void main...
ref和out的區別
還是以例子來表明吧 1.ref int i 0 有函式fun ref i 和fun i 它們的函式體都是,那麼在執行以下兩段 後 1 int i 0 fun i system.console.writeline i.tostring 2 int i 0 fun ref i system.consol...