W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
封裝是一種面向對象編程(OOP)概念,將數據和功能綁定在一起,操作數據,并保持兩者免受外部干擾和誤用。數據封裝導致了數據隱藏的重要OOP概念。封裝是捆綁數據和使用它們的函數的機制,數據抽象是一種僅暴露接口并向用戶隱藏實現細節(jié)的機制。
Report ZEncap1. Interface inter_1. Data text1 Type char35. Methods method1. EndInterface. CLASS Class1 Definition. PUBLIC Section. Interfaces inter_1. ENDCLASS. CLASS Class2 Definition. PUBLIC Section. Interfaces inter_1. ENDCLASS. CLASS Class1 Implementation. Method inter_1~method1. inter_1~text1 = 'Class 1 Interface method'. Write / inter_1~text1. EndMethod. ENDCLASS. CLASS Class2 Implementation. Method inter_1~method1. inter_1~text1 = 'Class 2 Interface method'. Write / inter_1~text1. EndMethod. ENDCLASS. Start-Of-Selection. Data: Object1 Type Ref To Class1, Object2 Type Ref To Class2. Create Object: Object1, Object2. CALL Method: Object1→inter_1~method1, Object2→inter_1~method1.
上面的代碼產生以下輸出:
Class 1 Interface method Class 2 Interface method
封裝的類對外界沒有很多依賴。 此外,他們與外部客戶端的交互通過穩(wěn)定的公共接口進行控制。 也就是說,封裝類及其客戶端松散耦合。 在大多數情況下,具有定義良好的接口的類可以插入到另一個上下文中。 當設計正確時,封裝類成為可重用的軟件資產。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯系方式:
更多建議: