C# 方法

c# 方法

一個(gè)方法是把一些相關(guān)的語(yǔ)句組織在一起,用來(lái)執(zhí)行一個(gè)任務(wù)的語(yǔ)句塊。每一個(gè) c# 程序至少有一個(gè)帶有 main 方法的類。

要使用一個(gè)方法,您需要:

  • 定義方法
  • 調(diào)用方法

 

1. c# 中定義方法

當(dāng)定義一個(gè)方法時(shí),從根本上說(shuō)是在聲明它的結(jié)構(gòu)的元素。在 c# 中,定義方法的語(yǔ)法如下:

<access specifier> <return type> <method name>(parameter list)
{
   method body
}

下面是方法的各個(gè)元素:

  • access specifier:訪問(wèn)修飾符,這個(gè)決定了變量或方法對(duì)于另一個(gè)類的可見(jiàn)性。
  • return type:返回類型,一個(gè)方法可以返回一個(gè)值。返回類型是方法返回的值的數(shù)據(jù)類型。如果方法不返回任何值,則返回類型為 void
  • method name:方法名稱,是一個(gè)唯一的標(biāo)識(shí)符,且是大小寫(xiě)敏感的。它不能與類中聲明的其他標(biāo)識(shí)符相同。
  • parameter list:參數(shù)列表,使用圓括號(hào)括起來(lái),該參數(shù)是用來(lái)傳遞和接收方法的數(shù)據(jù)。參數(shù)列表是指方法的參數(shù)類型、順序和數(shù)量。參數(shù)是可選的,也就是說(shuō),一個(gè)方法可能不包含參數(shù)。
  • method body:方法主體,包含了完成任務(wù)所需的指令集。

 

2. c# 方法范例

下面的代碼片段顯示一個(gè)函數(shù) findmax,它接受兩個(gè)整數(shù)值,并返回兩個(gè)中的較大值。它有 public 訪問(wèn)修飾符,所以它可以使用類的范例從類的外部進(jìn)行訪問(wèn)。

class numbermanipulator
{
? ?public int findmax(int num1, int num2)
? ?{
? ? ? /* 局部變量聲明 */
? ? ? int result;

? ? ? if (num1 > num2)
? ? ? ? ?result = num1;
? ? ? else
? ? ? ? ?result = num2;

? ? ? return result;
? ?}
? ?...
}

 

3. c# 中調(diào)用方法

您可以使用方法名調(diào)用方法。下面的范例演示了這點(diǎn):

using system;

namespace calculatorapplication
{
? ?class numbermanipulator
? ?{
? ? ? public int findmax(int num1, int num2)
? ? ? {
? ? ? ? ?/* 局部變量聲明 */
? ? ? ? ?int result;

? ? ? ? ?if (num1 > num2)
? ? ? ? ? ? result = num1;
? ? ? ? ?else
? ? ? ? ? ? result = num2;

? ? ? ? ?return result;
? ? ? }
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?/* 局部變量定義 */
? ? ? ? ?int a = 100;
? ? ? ? ?int b = 200;
? ? ? ? ?int ret;
? ? ? ? ?numbermanipulator n = new numbermanipulator();

? ? ? ? ?//調(diào)用 findmax 方法
? ? ? ? ?ret = n.findmax(a, b);
? ? ? ? ?console.writeline("最大值是: {0}", ret );
? ? ? ? ?console.readline();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

最大值是: 200

您也可以使用類的范例從另一個(gè)類中調(diào)用其他類的公有方法。例如,方法 findmax 屬于 numbermanipulator 類,您可以從另一個(gè)類 test 中調(diào)用它。

using system;

namespace calculatorapplication
{
? ? class numbermanipulator
? ? {
? ? ? ? public int findmax(int num1, int num2)
? ? ? ? {
? ? ? ? ? ? /* 局部變量聲明 */
? ? ? ? ? ? int result;

? ? ? ? ? ? if (num1 > num2)
? ? ? ? ? ? ? ? result = num1;
? ? ? ? ? ? else
? ? ? ? ? ? ? ? result = num2;

? ? ? ? ? ? return result;
? ? ? ? }
? ? }
? ? class test
? ? {
? ? ? ? static void main(string[] args)
? ? ? ? {
? ? ? ? ? ? /* 局部變量定義 */
? ? ? ? ? ? int a = 100;
? ? ? ? ? ? int b = 200;
? ? ? ? ? ? int ret;
? ? ? ? ? ? numbermanipulator n = new numbermanipulator();
? ? ? ? ? ? //調(diào)用 findmax 方法
? ? ? ? ? ? ret = n.findmax(a, b);
? ? ? ? ? ? console.writeline("最大值是: {0}", ret );
? ? ? ? ? ? console.readline();

? ? ? ? }
? ? }
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

最大值是: 200

 

4. 遞歸方法調(diào)用

一個(gè)方法可以自我調(diào)用。這就是所謂的 遞歸。下面的范例使用遞歸函數(shù)計(jì)算一個(gè)數(shù)的階乘:

using system;

namespace calculatorapplication
{
? ? class numbermanipulator
? ? {
? ? ? ? public int factorial(int num)
? ? ? ? {
? ? ? ? ? ? /* 局部變量定義 */
? ? ? ? ? ? int result;

? ? ? ? ? ? if (num == 1)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? return 1;
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? result = factorial(num - 1) * num;
? ? ? ? ? ? ? ? return result;
? ? ? ? ? ? }
? ? ? ? }
? ? 
? ? ? ? static void main(string[] args)
? ? ? ? {
? ? ? ? ? ? numbermanipulator n = new numbermanipulator();
? ? ? ? ? ? //調(diào)用 factorial 方法
? ? ? ? ? ? console.writeline("6 的階乘是: {0}", n.factorial(6));
? ? ? ? ? ? console.writeline("7 的階乘是: {0}", n.factorial(7));
? ? ? ? ? ? console.writeline("8 的階乘是: {0}", n.factorial(8));
? ? ? ? ? ? console.readline();

? ? ? ? }
? ? }
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

6 的階乘是: 720
7 的階乘是: 5040
8 的階乘是: 40320

 

5. 參數(shù)傳遞

當(dāng)調(diào)用帶有參數(shù)的方法時(shí),您需要向方法傳遞參數(shù)。在 c# 中,有三種向方法傳遞參數(shù)的方式:

方式描述
值參數(shù)這種方式復(fù)制參數(shù)的實(shí)際值給函數(shù)的形式參數(shù),實(shí)參和形參使用的是兩個(gè)不同內(nèi)存中的值。在這種情況下,當(dāng)形參的值發(fā)生改變時(shí),不會(huì)影響實(shí)參的值,從而保證了實(shí)參數(shù)據(jù)的安全。
引用參數(shù)這種方式復(fù)制參數(shù)的內(nèi)存位置的引用給形式參數(shù)。這意味著,當(dāng)形參的值發(fā)生改變時(shí),同時(shí)也改變實(shí)參的值。
輸出參數(shù)這種方式可以返回多個(gè)值。

 

6. 按值傳遞參數(shù)

這是參數(shù)傳遞的默認(rèn)方式。在這種方式下,當(dāng)調(diào)用一個(gè)方法時(shí),會(huì)為每個(gè)值參數(shù)創(chuàng)建一個(gè)新的存儲(chǔ)位置。

實(shí)際參數(shù)的值會(huì)復(fù)制給形參,實(shí)參和形參使用的是兩個(gè)不同內(nèi)存中的值。所以,當(dāng)形參的值發(fā)生改變時(shí),不會(huì)影響實(shí)參的值,從而保證了實(shí)參數(shù)據(jù)的安全。下面的范例演示了這個(gè)概念:

using system;
namespace calculatorapplication
{
? ?class numbermanipulator
? ?{
? ? ? public void swap(int x, int y)
? ? ? {
? ? ? ? ?int temp;
? ? ? ? ?
? ? ? ? ?temp = x; /* 保存 x 的值 */
? ? ? ? ?x = y; ? ?/* 把 y 賦值給 x */
? ? ? ? ?y = temp; /* 把 temp 賦值給 y */
? ? ? }
? ? ? 
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?numbermanipulator n = new numbermanipulator();
? ? ? ? ?/* 局部變量定義 */
? ? ? ? ?int a = 100;
? ? ? ? ?int b = 200;
? ? ? ? ?
? ? ? ? ?console.writeline("在交換之前,a 的值: {0}", a);
? ? ? ? ?console.writeline("在交換之前,b 的值: {0}", b);
? ? ? ? ?
? ? ? ? ?/* 調(diào)用函數(shù)來(lái)交換值 */
? ? ? ? ?n.swap(a, b);
? ? ? ? ?
? ? ? ? ?console.writeline("在交換之后,a 的值: {0}", a);
? ? ? ? ?console.writeline("在交換之后,b 的值: {0}", b);
? ? ? ? ?
? ? ? ? ?console.readline();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

在交換之前,a 的值:100
在交換之前,b 的值:200
在交換之后,a 的值:100
在交換之后,b 的值:200

結(jié)果表明,即使在函數(shù)內(nèi)改變了值,值也沒(méi)有發(fā)生任何的變化。

 

7. 按引用傳遞參數(shù)

引用參數(shù)是一個(gè)對(duì)變量的內(nèi)存位置的引用。當(dāng)按引用傳遞參數(shù)時(shí),與值參數(shù)不同的是,它不會(huì)為這些參數(shù)創(chuàng)建一個(gè)新的存儲(chǔ)位置。引用參數(shù)表示與提供給方法的實(shí)際參數(shù)具有相同的內(nèi)存位置。

在 c# 中,使用 ref 關(guān)鍵字聲明引用參數(shù)。下面的范例演示了這點(diǎn):

using system;
namespace calculatorapplication
{
? ?class numbermanipulator
? ?{
? ? ? public void swap(ref int x, ref int y)
? ? ? {
? ? ? ? ?int temp;

? ? ? ? ?temp = x; /* 保存 x 的值 */
? ? ? ? ?x = y; ? ?/* 把 y 賦值給 x */
? ? ? ? ?y = temp; /* 把 temp 賦值給 y */
? ? ? ?}
? ?
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?numbermanipulator n = new numbermanipulator();
? ? ? ? ?/* 局部變量定義 */
? ? ? ? ?int a = 100;
? ? ? ? ?int b = 200;

? ? ? ? ?console.writeline("在交換之前,a 的值: {0}", a);
? ? ? ? ?console.writeline("在交換之前,b 的值: {0}", b);

? ? ? ? ?/* 調(diào)用函數(shù)來(lái)交換值 */
? ? ? ? ?n.swap(ref a, ref b);

? ? ? ? ?console.writeline("在交換之后,a 的值: {0}", a);
? ? ? ? ?console.writeline("在交換之后,b 的值: {0}", b);
?
? ? ? ? ?console.readline();

? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

在交換之前,a 的值:100
在交換之前,b 的值:200
在交換之后,a 的值:200
在交換之后,b 的值:100

結(jié)果表明,swap 函數(shù)內(nèi)的值改變了,且這個(gè)改變可以在 main 函數(shù)中反映出來(lái)。

 

8. 按輸出傳遞參數(shù)

return 語(yǔ)句可用于只從函數(shù)中返回一個(gè)值。但是,可以使用 輸出參數(shù) 來(lái)從函數(shù)中返回兩個(gè)值。輸出參數(shù)會(huì)把方法輸出的數(shù)據(jù)賦給自己,其他方面與引用參數(shù)相似。

下面的范例演示了這點(diǎn):

using system;

namespace calculatorapplication
{
? ?class numbermanipulator
? ?{
? ? ? public void getvalue(out int x )
? ? ? {
? ? ? ? ?int temp = 5;
? ? ? ? ?x = temp;
? ? ? }
? ?
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?numbermanipulator n = new numbermanipulator();
? ? ? ? ?/* 局部變量定義 */
? ? ? ? ?int a = 100;
? ? ? ? ?
? ? ? ? ?console.writeline("在方法調(diào)用之前,a 的值: {0}", a);
? ? ? ? ?
? ? ? ? ?/* 調(diào)用函數(shù)來(lái)獲取值 */
? ? ? ? ?n.getvalue(out a);

? ? ? ? ?console.writeline("在方法調(diào)用之后,a 的值: {0}", a);
? ? ? ? ?console.readline();

? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果:

在方法調(diào)用之前,a 的值: 100
在方法調(diào)用之后,a 的值: 5

提供給輸出參數(shù)的變量不需要賦值。當(dāng)需要從一個(gè)參數(shù)沒(méi)有指定初始值的方法中返回值時(shí),輸出參數(shù)特別有用。請(qǐng)看下面的范例,來(lái)理解這一點(diǎn):

using system;

namespace calculatorapplication
{
? ?class numbermanipulator
? ?{
? ? ? public void getvalues(out int x, out int y )
? ? ? {
? ? ? ? ? console.writeline("請(qǐng)輸入第一個(gè)值: ");
? ? ? ? ? x = convert.toint32(console.readline());
? ? ? ? ? console.writeline("請(qǐng)輸入第二個(gè)值: ");
? ? ? ? ? y = convert.toint32(console.readline());
? ? ? }
? ?
? ? ? static void main(string[] args)
? ? ? {
? ? ? ? ?numbermanipulator n = new numbermanipulator();
? ? ? ? ?/* 局部變量定義 */
? ? ? ? ?int a , b;
? ? ? ? ?
? ? ? ? ?/* 調(diào)用函數(shù)來(lái)獲取值 */
? ? ? ? ?n.getvalues(out a, out b);

? ? ? ? ?console.writeline("在方法調(diào)用之后,a 的值: {0}", a);
? ? ? ? ?console.writeline("在方法調(diào)用之后,b 的值: {0}", b);
? ? ? ? ?console.readline();
? ? ? }
? ?}
}

當(dāng)上面的代碼被編譯和執(zhí)行時(shí),它會(huì)產(chǎn)生下列結(jié)果(取決于用戶輸入):

請(qǐng)輸入第一個(gè)值:
7
請(qǐng)輸入第二個(gè)值:
8
在方法調(diào)用之后,a 的值: 7
在方法調(diào)用之后,b 的值: 8

下一節(jié):c# 可空類型

c# 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频