接口封装
封装实际上意味着一个属性和方法可以在不同的类中修改。因此,数据和方法可以具有不同的形式和逻辑,可以隐藏到单独的类中。
让我们考虑通过接口进行封装。当我们需要在不同的类中创建具有不同功能的一种方法时,可以使用接口。这里方法的名称不需要改变。相同的方法必须在不同的类实现中实现。
例子
以下程序包含一个接口 inter_1。我们已经声明了属性和方法method1。我们还定义了两个类,例如 Class1 和 Class2。因此,我们必须在两个类实现中实现方法“method1”。我们在不同的类中以不同的方式实现了方法“method1”。在选择开始时,我们为两个类创建两个对象 Object1 和 Object2。然后,我们通过不同的对象调用该方法来获取在单独的类中声明的函数。
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
封装类对外界没有太多的依赖。此外,他们与外部客户端的交互是通过稳定的公共接口进行控制的。也就是说,封装类与其客户端是松散耦合的。在大多数情况下,具有明确定义接口的类可以插入到另一个上下文中。如果设计正确,封装的类将成为可重用的软件资产。