C#重點知識詳解(一) (轉)

worldblog發表於2007-12-06
C#重點知識詳解(一) (轉)[@more@]

前沿

在的推出後,關於的有關文章也相繼出現,作為微軟的重要的與抗衡的語言,C#具有很多優點。本文將選一些C#語言中的重要知識詳細介紹,

第一章:引數

1。1  IN 引數

c#種的四種引數形式:
  一般引數
  in引數
  out引數
  引數數列
本章將介紹後三種的使用。

在C語言你可以通傳遞地址(即實參)或是語言中透過VAR指示符傳遞地址引數來進行資料排序等操作,在C#語言中,是如何做的呢?"in"關鍵字可以幫助你。這個關鍵字可以透過引數傳遞你想返回的值。
namespace TestRefP
{
using System;
public class myClass
{
 
public static void RefTest(ref int iVal1 )
{
iVal1 += 2;
 
}
public static void Main()
{
int i=3; //變數需要初始化
 
RefTest(ref i );
Console.WriteLine(i);
 
}
}
}

必須注意的是變數要須先初始化。

結果:

5

 

1。2  OUT 引數


你是否想一次返回多個值?在C++語言中這項任務基本上是不可能完成的任務。在c#中"out"關鍵字可以幫助你輕鬆完成。這個關鍵字可以透過引數一次返回多個值。
public class mathClass
{
  public static int TestOut(out int iVal1, out int iVal2)
  {
  iVal1 = 10;
  iVal2 = 20;
  return 0;
  }

public static void Main()
{
  int i, j;  // 變數不需要初始化。
  Console.WriteLine(TestOut(out i, out j));
  Console.WriteLine(i);
  Console.WriteLine(j);
}
}

結果:

0  10  20

1。3 引數數列

引數數列能夠使多個相關的引數被單個數列代表,換就話說,引數數列就是變數的長度。

using System;

class Test
{
static void F(params int[] args) {
Console.WriteLine("# 引數: {0}", args.Length);
for (int i = 0; i < args.Length; i++)
  Console.WriteLine("targs[{0}] = {1}", i, args[i]);
}

static void Main() {
F();
F(1);
F(1, 2);
F(1, 2, 3);
F(new int[] {1, 2, 3, 4});
}
}

以下為輸出結果:

# 引數: 0
# 引數: 1
args[0] = 1
# 引數: 2
args[0] = 1
args[1] = 2
# 引數: 3
args[0] = 1
args[1] = 2
args[2] = 3
# 引數: 4
args[0] = 1
args[1] = 2
args[2] = 3
args[3]


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-988885/,如需轉載,請註明出處,否則將追究法律責任。

相關文章