C#中ref、out及特殊說明引數的用法

superdont發表於2007-11-16
 1.out引數的用法。

using System;
class TestOut
{
   
static public void FillArray(out int[] myArray)
  
{
      
// 初始化陣列(必須):
       myArray = new int[5]{12345};
    }


   
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]);
    }

}


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);
      
  }

}
 


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);
    }

}


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);



    }

}

































相關文章