首頁 > Java > java教程 > 主體

Java中的封裝

王林
發布: 2024-08-30 15:59:54
原創
999 人瀏覽過

封裝是Java中四個基本的物件導向程式設計概念之一。這背後的主要想法是向用戶隱藏實作細節。換句話說,封裝是將資料包裝成一個單元,以防止外界存取它。由於資料對其他類別是隱藏的,因此此過程稱為資料隱藏。讓我們以燈泡的工作為例。即使我們使用它,我們也不知道它是否在燈泡後面工作。  但在 Java 封裝的情況下,可以使用修飾符存取資料。讓我們在下一節中探討一下。

Java 中的封裝是如何運作的?

封裝在 Java 中的工作原理是

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

  • 將類別中的屬性或變數宣告為私有

例如,我們正在建立一個 Employee 類別。變數需要設定為私有,如下所示。

private String EmpName;
private int EmpID;
private int EmpSal;
登入後複製
  • 在類別中建立公共方法來取得和設定屬性或變數。

以下是Employee類別中不同私有變數的get方法和set方法。

代碼:

public int getEmpSal()
{
return EmpSal;
}public String getEmpName()
{
return EmpName;
}
public int getEmpID()
{
return EmpID;
}
public void setEmpSal( int EmpSal)
{
this.EmpSal = EmpSal;
}
public void setEmpName(String EmpName)
{
this.EmpName = EmpName;
}
public void setEmpID( int EmpID)
{
this.EmpID = EmpID;
}
登入後複製

使用這些方法,可以使類別成為只寫或唯讀,即,如果需要,我們可以跳過這些方法。

Java 封裝的優點

以下是封裝的一些優點。

  • 應用簡單
  • 能夠依需求重複使用或修改程式碼
  • 限制資料的可存取性
  • 由於程式碼被封裝,單元測試變得容易

Java Bean 類別是完全封裝類別的一個範例,因為類別中的所有資料成員都是私有的。

Java 封裝範例

讓我們來看一個同時包含 getter 和 setter 方法的封裝範例。為此,創建 2 個類別 - 一個具有主要方法,另一個具有獲取和設定方法。

範例#1

Employee.java

代碼:

//Java program for Encapsulation with both read and write
public class Employee {
//private variables which can be accessed by public methods of the class
private String EmpName;
private int EmpID;
private int EmpSal;
// get method to access the private integer variable EmpSal
public int getEmpSal()
{
return EmpSal;
}
// get method to access the private string variable EmpName
public String getEmpName()
{
return EmpName;
}
// get method to access the private integer variable EmpID
public int getEmpID()
{
return EmpID;
}
// set method to access the private integer variable EmpSal
public void setEmpSal( int EmpSal)
{
this.EmpSal = EmpSal;
}
// set method to access the private string variable EmpName
public void setEmpName(String EmpName)
{
this.EmpName = EmpName;
}
// set method to access the private integer variable EmpID
public void setEmpID( int EmpID)
{
this.EmpID = EmpID;
}
}
登入後複製
  • EmployeeEncaps.java

代碼:

public class EmployeeEncaps {
public static void main(String[] args) {
Employee EmpObj= new Employee(); //object of the class Employee
//passing the values to the methods using object
EmpObj.setEmpName("Anna");
EmpObj.setEmpSal(30000);
EmpObj.setEmpID(670311);
// Printing values of the variables
System.out.println("Employee's Name: " + EmpObj.getEmpName());
System.out.println("Employee's ID: " + EmpObj.getEmpID());
System.out.println("Employee's Salary: " + EmpObj.getEmpSal());
}
}
登入後複製

輸出:

Java中的封裝

上面的程式中封裝了 Employee 類,因為變數是私有的。由於它具有 get 和 set 方法,因此可以讀取和寫入該實作。 EmpName、EmpSal 和 EmpID 等私有變數透過這些方法進行訪問,並透過使用物件呼叫方法來顯示。

現在,讓我們看看封裝如何與唯讀類別一起使用。

範例#2

  • Employee.java

代碼:

//Java program for Encapsulation with read permission
public class Employee {
//private variables which can be accessed by public methods of the class
private String EmpName = "Adam";
private int EmpID = 670388;
private int EmpSal = 35000;
// get method to access the private integer variable EmpSal
public int getEmpSal()
{return EmpSal;
}// get method to access the private string variable EmpName
public String getEmpName()
{
return EmpName;
}
// get method to access the private integer variable EmpID
public int getEmpID()
{
return EmpID;
}
}
登入後複製
  • EmployeeEncaps.java

代碼:

public class EmployeeEncaps {
public static void main(String[] args) {
Employee EmpObj= new Employee(); //object of the class Employee
// Printing values of the variables
System.out.println("Employee's Name: " + EmpObj.getEmpName());
System.out.println("Employee's ID: " + EmpObj.getEmpID());
System.out.println("Employee's Salary: " + EmpObj.getEmpSal());
}
}
登入後複製

輸出:

Java中的封裝

與第一個範例類似,我們也使用私有變數。不同之處在於我們沒有使用 set 方法來設定類別中私有變數的值。相反,我們直接將值賦給變數。

現在,我們可以進入只寫類別。

範例 #3

  • Employee.java

代碼:

//Java program for Encapsulation with write permission
public class Employee {
//private variables which can be accessed by public methods of the class
private String EmpName;
private int EmpID;
private int EmpSal;
// set method to access the private integer variable EmpSal
public void setEmpSal( int EmpSal)
{
this.EmpSal = EmpSal;
//for sample output
System.out.println("Employee's Salary: " + EmpSal);
}
// set method to access the private string variable EmpName
public void setEmpName(String EmpName)
{
this.EmpName = EmpName;
//for sample output
System.out.println("Employee's Name: " + EmpName);
}// set method to access the private integer variable EmpID
public void setEmpID( int EmpID)
{
this.EmpID = EmpID;
//for sample output
System.out.println("Employee's ID: " + EmpID);
}
}
登入後複製
  • EmployeeEncaps.java

代碼:

public class EmployeeEncaps {
public static void main(String[] args) {
Employee EmpObj= new Employee(); //object of the class Employee
//passing the values to the methods using object
EmpObj.setEmpName("Iza");
EmpObj.setEmpID(670472);
EmpObj.setEmpSal(48000);
}
}
登入後複製

輸出:

Java中的封裝

在上面的範例中,我們沒有使用 get 方法來實作只寫類別。即,不能在此處變更或檢索變數。由於無法取得值,因此我們在 set 方法中使用 print 來進行範例輸出。

結論

封裝是一個 OOP 概念,其中資料將被包裝,隱藏所有實作細節。可以透過使用私有變數以及get、setting等方法來存取變數來實現。封裝的主要優點包括靈活性、資料隱藏、易於測試和可重複使用性。

以上是Java中的封裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!