跳转到内容

Visual Basic .NET/接口

来自维基教科书,开放的书籍,开放的世界

一个接口是类的公共方法。它们用 Implements 关键字声明。

创建接口

Public Interface Interface1
   Function Function1() As String
End Interface

从类中使用它

Public Class MyClassFromInterface
    implements Interface1()
    ' by pressing enter the IDE creates automatically the implemented interface elements:
    Public Function Function1() As String Implements Interface1.Function1
        ' ...
    End Function
End Class


参考资料

[编辑 | 编辑源代码]
华夏公益教科书