「VB.NET」継承クラスのサンプル

書式
Public クラスB Inherits クラスA
使用例

Public Class Parent
    Public Function funcA()
        Return "AA001"
    End Function
End Class


Public Class Child
    Inherits Parent
    Public Function funcB()
        Return "BB02"
    End Function
End Class

Module Module1
    Sub Main()
        Dim cft As New Child
        Console.WriteLine(cft.funcA()) 
        Console.WriteLine(cft.funcB()) 
    End Sub
End Module

実行結果
AA01
BB02

VB.net

Posted by arkgame