封裝是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 Bean 類別是完全封裝類別的一個範例,因為類別中的所有資料成員都是私有的。
讓我們來看一個同時包含 getter 和 setter 方法的封裝範例。為此,創建 2 個類別 - 一個具有主要方法,另一個具有獲取和設定方法。
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; } }
代碼:
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()); } }
輸出:
上面的程式中封裝了 Employee 類,因為變數是私有的。由於它具有 get 和 set 方法,因此可以讀取和寫入該實作。 EmpName、EmpSal 和 EmpID 等私有變數透過這些方法進行訪問,並透過使用物件呼叫方法來顯示。
現在,讓我們看看封裝如何與唯讀類別一起使用。
代碼:
//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; } }
代碼:
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()); } }
輸出:
與第一個範例類似,我們也使用私有變數。不同之處在於我們沒有使用 set 方法來設定類別中私有變數的值。相反,我們直接將值賦給變數。
現在,我們可以進入只寫類別。
代碼:
//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); } }
代碼:
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); } }
輸出:
在上面的範例中,我們沒有使用 get 方法來實作只寫類別。即,不能在此處變更或檢索變數。由於無法取得值,因此我們在 set 方法中使用 print 來進行範例輸出。
封裝是一個 OOP 概念,其中資料將被包裝,隱藏所有實作細節。可以透過使用私有變數以及get、setting等方法來存取變數來實現。封裝的主要優點包括靈活性、資料隱藏、易於測試和可重複使用性。
以上是Java中的封裝的詳細內容。更多資訊請關注PHP中文網其他相關文章!