黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C# 封裝

c# 封裝

封裝 被定義為"把一個(gè)或多個(gè)項(xiàng)目封閉在一個(gè)物理的或者邏輯的包中"。在面向?qū)ο蟪绦蛟O(shè)計(jì)方法論中,封裝是為了防止對(duì)實(shí)現(xiàn)細(xì)節(jié)的訪問(wèn)。

抽象和封裝是面向?qū)ο蟪绦蛟O(shè)計(jì)的相關(guān)特性。抽象允許相關(guān)信息可視化,封裝則使開(kāi)發(fā)者實(shí)現(xiàn)所需級(jí)別的抽象。

c# 封裝根據(jù)具體的需要,設(shè)置使用者的訪問(wèn)權(quán)限,并通過(guò) 訪問(wèn)修飾符 來(lái)實(shí)現(xiàn)。

一個(gè) 訪問(wèn)修飾符 定義了一個(gè)類(lèi)成員的范圍和可見(jiàn)性。c# 支持的訪問(wèn)修飾符如下所示:

  • public:所有對(duì)象都可以訪問(wèn);
  • private:對(duì)象本身在對(duì)象內(nèi)部可以訪問(wèn);
  • protected:只有該類(lèi)對(duì)象及其子類(lèi)對(duì)象可以訪問(wèn)
  • internal:同一個(gè)程序集的對(duì)象可以訪問(wèn);
  • protected internal:訪問(wèn)限于當(dāng)前程序集或派生自包含類(lèi)的類(lèi)型。

 

1. public 訪問(wèn)修飾符

public 訪問(wèn)修飾符允許一個(gè)類(lèi)將其成員變量和成員函數(shù)暴露給其他的函數(shù)和對(duì)象。任何公有成員可以被外部的類(lèi)訪問(wèn)。

下面的范例說(shuō)明了這點(diǎn):

using system;

namespace rectangleapplication
{
? ? class rectangle
? ? {
? ? ? ? //成員變量
? ? ? ? public double length;
? ? ? ? public double width;

? ? ? ? public double getarea()
? ? ? ? {
? ? ? ? ? ? return length * width;
? ? ? ? }
? ? ? ? public void display()
? ? ? ? {
? ? ? ? ? ? console.writeline("長(zhǎng)度: {0}", length);
? ? ? ? ? ? console.writeline("寬度: {0}", width);
? ? ? ? ? ? console.writeline("面積: {0}", getarea());
? ? ? ? }
? ? }// rectangle 結(jié)束

? ? class executerectangle
? ? {
? ? ? ? static void main(string[] args)
? ? ? ? {
? ? ? ? ? ? rectangle r = new rectangle();
? ? ? ? ? ? r.length = 4.5;
? ? ? ? ? ? r.width = 3.5;
? ? ? ? ? ? r.display();
? ? ? ? ? ? console.readline();
? ? ? ? }
? ? }
}

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

長(zhǎng)度: 4.5
寬度: 3.5
面積: 15.75

在上面的范例中,成員變量 length 和 width 被聲明為 public,所以它們可以被函數(shù) main() 使用 rectangle 類(lèi)的范例 r 訪問(wèn)。

成員函數(shù) display() 和 getarea() 可以直接訪問(wèn)這些變量。

成員函數(shù) display() 也被聲明為 public,所以它也能被 main() 使用 rectangle 類(lèi)的范例 r 訪問(wèn)。

 

2. private 訪問(wèn)修飾符

private 訪問(wèn)修飾符允許一個(gè)類(lèi)將其成員變量和成員函數(shù)對(duì)其他的函數(shù)和對(duì)象進(jìn)行隱藏。只有同一個(gè)類(lèi)中的函數(shù)可以訪問(wèn)它的私有成員。即使是類(lèi)的范例也不能訪問(wèn)它的私有成員。

下面的范例說(shuō)明了這點(diǎn):

using system;

namespace rectangleapplication
{
? ? class rectangle
? ? {
? ? ? ? //成員變量
? ? ? ? private double length;
? ? ? ? private double width;

? ? ? ? public void acceptdetails()
? ? ? ? {
? ? ? ? ? ? console.writeline("請(qǐng)輸入長(zhǎng)度:");
? ? ? ? ? ? length = convert.todouble(console.readline());
? ? ? ? ? ? console.writeline("請(qǐng)輸入寬度:");
? ? ? ? ? ? width = convert.todouble(console.readline());
? ? ? ? }
? ? ? ? public double getarea()
? ? ? ? {
? ? ? ? ? ? return length * width;
? ? ? ? }
? ? ? ? public void display()
? ? ? ? {
? ? ? ? ? ? console.writeline("長(zhǎng)度: {0}", length);
? ? ? ? ? ? console.writeline("寬度: {0}", width);
? ? ? ? ? ? console.writeline("面積: {0}", getarea());
? ? ? ? }
? ? }//end class rectangle ? ?
? ? class executerectangle
? ? {
? ? ? ? static void main(string[] args)
? ? ? ? {
? ? ? ? ? ? rectangle r = new rectangle();
? ? ? ? ? ? r.acceptdetails();
? ? ? ? ? ? r.display();
? ? ? ? ? ? console.readline();
? ? ? ? }
? ? }
}

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

請(qǐng)輸入長(zhǎng)度:
4.4
請(qǐng)輸入寬度:
3.3
長(zhǎng)度: 4.4
寬度: 3.3
面積: 14.52

在上面的范例中,成員變量 length 和 width 被聲明為 private,所以它們不能被函數(shù) main() 訪問(wèn)。

成員函數(shù) acceptdetails() 和 display() 可以訪問(wèn)這些變量。

由于成員函數(shù) acceptdetails() 和 display() 被聲明為 public,所以它們可以被 main() 使用 rectangle 類(lèi)的范例 r 訪問(wèn)。

 

3. protected 訪問(wèn)修飾符

protected 訪問(wèn)修飾符允許子類(lèi)訪問(wèn)它的基類(lèi)的成員變量和成員函數(shù)。這樣有助于實(shí)現(xiàn)繼承。我們將在繼承的章節(jié)詳細(xì)討論這個(gè)。更詳細(xì)地討論這個(gè)。

 

4. internal 訪問(wèn)修飾符

internal 訪問(wèn)說(shuō)明符允許一個(gè)類(lèi)將其成員變量和成員函數(shù)暴露給當(dāng)前程序中的其他函數(shù)和對(duì)象。換句話說(shuō),帶有 internal 訪問(wèn)修飾符的任何成員可以被定義在該成員所定義的應(yīng)用程序內(nèi)的任何類(lèi)或方法訪問(wèn)。

下面的范例說(shuō)明了這點(diǎn):

using system;

namespace rectangleapplication
{
? ? class rectangle
? ? {
? ? ? ? //成員變量
? ? ? ? internal double length;
? ? ? ? internal double width;
? ? ? ? 
? ? ? ? double getarea()
? ? ? ? {
? ? ? ? ? ? return length * width;
? ? ? ? }
? ? ? ?public void display()
? ? ? ? {
? ? ? ? ? ? console.writeline("長(zhǎng)度: {0}", length);
? ? ? ? ? ? console.writeline("寬度: {0}", width);
? ? ? ? ? ? console.writeline("面積: {0}", getarea());
? ? ? ? }
? ? }//end class rectangle ? ?
? ? class executerectangle
? ? {
? ? ? ? static void main(string[] args)
? ? ? ? {
? ? ? ? ? ? rectangle r = new rectangle();
? ? ? ? ? ? r.length = 4.5;
? ? ? ? ? ? r.width = 3.5;
? ? ? ? ? ? r.display();
? ? ? ? ? ? console.readline();
? ? ? ? }
? ? }
}

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

長(zhǎng)度: 4.5
寬度: 3.5
面積: 15.75

在上面的范例中,請(qǐng)注意成員函數(shù) getarea() 聲明的時(shí)候不帶有任何訪問(wèn)修飾符。如果沒(méi)有指定訪問(wèn)修飾符,則使用類(lèi)成員的默認(rèn)訪問(wèn)修飾符,即為 private。

 

5. protected internal 訪問(wèn)修飾符

protected internal 訪問(wèn)修飾符允許在本類(lèi),派生類(lèi)或者包含該類(lèi)的程序集中訪問(wèn)。這也被用于實(shí)現(xiàn)繼承。

下一節(jié):c# 方法

c# 教程

相關(guān)文章