Module Module1
Class Arithmetical
Public Function Subtract(ByVal a As Integer, ByVal b As Integer)
Return a - b
End Function
End Class
Sub Main()
Dim objArithmetical As New Arithmetical()
Console.WriteLine(objArithmetical.Subtract(80, 27))
Console.ReadKey()
End Sub
End Module
我如何实现构造函数?我是这个编码和语言的新手(VB.NET)。非常感谢。
谢谢
答案 0 :(得分:3)