C#中ref、out及特殊說明引數的用法
1.out引數的用法。
2.ref引數的基本用法,相當於c裡面的指標。
3.有ref與無ref的比較。
4.此處應用了類,注意類是引用型別,直接進行引用,除非在函式內生成新的類。
5.ref,out,與無參引數的比較。
using System;
class TestOut
{
static public void FillArray(out int[] myArray)
{
// 初始化陣列(必須):
myArray = new int[5]{1, 2, 3, 4, 5};
}
static public void Main()
{
int[] myArray; // 初始化陣列(不是必須的!)
// 傳遞陣列給(使用out方式的)呼叫方:
FillArray(out myArray);
// 顯示陣列元素
Console.WriteLine("陣列元素是:");
for (int i=0; i < myArray.Length; i++)
Console.WriteLine(myArray[i]);
}
}
class TestOut
{
static public void FillArray(out int[] myArray)
{
// 初始化陣列(必須):
myArray = new int[5]{1, 2, 3, 4, 5};
}
static public void Main()
{
int[] myArray; // 初始化陣列(不是必須的!)
// 傳遞陣列給(使用out方式的)呼叫方:
FillArray(out myArray);
// 顯示陣列元素
Console.WriteLine("陣列元素是:");
for (int i=0; i < myArray.Length; i++)
Console.WriteLine(myArray[i]);
}
}
2.ref引數的基本用法,相當於c裡面的指標。
using System;
class TestRef
{
public static void FillArray(ref int[] arr)
{
// 根據需要建立一新的陣列(不是必須的)
if (arr == null)
arr = new int[10];
// 否則填充陣列,就可以了
arr[0] = 123;
arr[4] = 1024;
}
static public void Main ()
{
//初始化陣列:
int[] myArray = {1,2,3,4,5};
// 使用ref傳遞陣列:
FillArray(ref myArray);
//顯示更新後的陣列元素:
Console.WriteLine("陣列元素是:");
for (int i = 0; i < myArray.Length; i++)
Console.WriteLine(myArray[i]);
}
}
class TestRef
{
public static void FillArray(ref int[] arr)
{
// 根據需要建立一新的陣列(不是必須的)
if (arr == null)
arr = new int[10];
// 否則填充陣列,就可以了
arr[0] = 123;
arr[4] = 1024;
}
static public void Main ()
{
//初始化陣列:
int[] myArray = {1,2,3,4,5};
// 使用ref傳遞陣列:
FillArray(ref myArray);
//顯示更新後的陣列元素:
Console.WriteLine("陣列元素是:");
for (int i = 0; i < myArray.Length; i++)
Console.WriteLine(myArray[i]);
}
}
3.有ref與無ref的比較。
using System;
public class MyClass
{
public static void TestRef(ref char i)
{
// The value of i will be changed in the calling method
i = 'b';
}
public static void TestNoRef(char i)
{
// The value of i will be unchanged in the calling method
i = 'c';
}
// This method passes a variable as a ref parameter; the value of the
// variable is changed after control passes back to this method.
// The same variable is passed as a value parameter; the value of the
// variable is unchanged after control is passed back to this method.
public static void Main()
{
char i = 'a'; // variable must be initialized
TestRef(ref i); // the arg must be passed as ref
Console.WriteLine(i);
i = 'a';
TestNoRef(i);
Console.WriteLine(i);
}
}
public class MyClass
{
public static void TestRef(ref char i)
{
// The value of i will be changed in the calling method
i = 'b';
}
public static void TestNoRef(char i)
{
// The value of i will be unchanged in the calling method
i = 'c';
}
// This method passes a variable as a ref parameter; the value of the
// variable is changed after control passes back to this method.
// The same variable is passed as a value parameter; the value of the
// variable is unchanged after control is passed back to this method.
public static void Main()
{
char i = 'a'; // variable must be initialized
TestRef(ref i); // the arg must be passed as ref
Console.WriteLine(i);
i = 'a';
TestNoRef(i);
Console.WriteLine(i);
}
}
4.此處應用了類,注意類是引用型別,直接進行引用,除非在函式內生成新的類。
using System;
// ----------------------------------------
// MyClass definition
public class MyClass
{
public int Value;
// ----------------------------------------
// Tester methods
public static void TestRef(ref MyClass m)
{
m.Value = 10;
}
public static void TestNoRef(MyClass m)
{
m.Value = 20;
}
public static void TestCreateRef(ref MyClass m)
{
m = new MyClass();
m.Value = 100;
}
public static void TestCreateNoRef(MyClass m)
{
m = new MyClass();
m.Value = 200;
}
public static void Main()
{
MyClass m = new MyClass();
m.Value = 1;
TestRef(ref m);
Console.WriteLine(m.Value);
TestNoRef(m);
Console.WriteLine(m.Value);
TestCreateRef(ref m);
Console.WriteLine(m.Value);
TestCreateNoRef(m);
Console.WriteLine(m.Value);
}
}
// ----------------------------------------
// MyClass definition
public class MyClass
{
public int Value;
// ----------------------------------------
// Tester methods
public static void TestRef(ref MyClass m)
{
m.Value = 10;
}
public static void TestNoRef(MyClass m)
{
m.Value = 20;
}
public static void TestCreateRef(ref MyClass m)
{
m = new MyClass();
m.Value = 100;
}
public static void TestCreateNoRef(MyClass m)
{
m = new MyClass();
m.Value = 200;
}
public static void Main()
{
MyClass m = new MyClass();
m.Value = 1;
TestRef(ref m);
Console.WriteLine(m.Value);
TestNoRef(m);
Console.WriteLine(m.Value);
TestCreateRef(ref m);
Console.WriteLine(m.Value);
TestCreateNoRef(m);
Console.WriteLine(m.Value);
}
}
5.ref,out,與無參引數的比較。
using System;
class TestApp
{
static void outTest(out int x, out int y)
{//離開這個函式前,必須對x和y賦值,否則會報錯。
//y = x;
//上面這行會報錯,因為使用了out後,x和y都清空了,需要重新賦值,即使呼叫函式前賦過值也不行
x = 1;
y = 2;
}
static void refTest(ref int x, ref int y)
{
x = 1;
y = x;
}
static void noRefTest(int x, int y)
{
x = 8;
y = x;
}
public static void Main()
{
//out test
int a, b;
//out使用前,變數可以不賦值
outTest(out a, out b);
Console.WriteLine("a={0};b={1}", a, b);
int c = 11, d = 22;
outTest(out c, out d);
Console.WriteLine("c={0};d={1}", 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={0};p={1}", o, p);
int li = 99, zong = 89;
noRefTest(li, zong);
Console.WriteLine("{0},{1}", li, zong);
}
}
class TestApp
{
static void outTest(out int x, out int y)
{//離開這個函式前,必須對x和y賦值,否則會報錯。
//y = x;
//上面這行會報錯,因為使用了out後,x和y都清空了,需要重新賦值,即使呼叫函式前賦過值也不行
x = 1;
y = 2;
}
static void refTest(ref int x, ref int y)
{
x = 1;
y = x;
}
static void noRefTest(int x, int y)
{
x = 8;
y = x;
}
public static void Main()
{
//out test
int a, b;
//out使用前,變數可以不賦值
outTest(out a, out b);
Console.WriteLine("a={0};b={1}", a, b);
int c = 11, d = 22;
outTest(out c, out d);
Console.WriteLine("c={0};d={1}", 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={0};p={1}", o, p);
int li = 99, zong = 89;
noRefTest(li, zong);
Console.WriteLine("{0},{1}", li, zong);
}
}
相關文章
- out,ref,params引數傳遞
- c# 方法引數(傳值,傳引用,ref,out,params,可選引數,命名引數)C#
- Lua中呼叫ref和out修飾引數的函式/過載函式函式
- 資料泵的TRANSFORM引數說明及使用ORM
- Java Out Of Memory解決之JAVA_OPTS引數說明與配置Java
- makefile中的一些引數說明
- mysqldump引數說明MySql
- TOP引數說明
- Python 中 key 引數的含義及用法Python
- Python中key引數的含義及用法Python
- 插曲:Kafka的生產者原理及重要引數說明Kafka
- C#中?和??及?:的用法C#
- Nginx的gzip配置引數說明Nginx
- C#程式設計:ref【引數按引用傳遞】C#程式設計
- c#基礎系列3—深入理解ref 和outC#
- laravel hasManyThrough用法及引數LaravelASM
- Oracle Table建立引數說明Oracle
- GoldenGate HANDLECOLLISIONS引數使用說明Go
- linux常用核心引數說明Linux
- 3個例項介紹shell指令碼中幾個特殊引數的用法指令碼
- PHP中$_SERVER的常用引數與說明——收錄篇PHPServer
- Rust 中 *、&、mut、&mut、ref、ref mut 的用法和區別Rust
- python的partial()用法說明Python
- mydumper和myloader引數使用說明
- React ref的用法React
- jquery datatables各引數詳細說明及簡單應用jQuery
- PbootCMS模板呼叫幻燈片輪播圖及引數說明boot
- ABAP-BITMAP的命令引數的使用說明
- Solon MVC 的 @Mapping 用法說明MVCAPP
- Mysql my.cnf部分引數說明MySql
- /etc/sysctl.conf部分引數說明
- mysql relay log相關引數說明MySql
- Azure Blob (三)引數設定說明
- 所有初始化引數說明(轉)
- pytest(10)-常用執行引數說明
- 關於xtrabackup --slave-info引數的說明
- vue --ref用法Vue
- mssql sqlserver 關鍵字 GROUPING用法簡介及說明SQLServer
- 正則特殊引數