Constructor with Optional parameter : Constructor « Class Module « VB.Net Tutorial






Public Class Point
  Private MX as Integer
  Private MY as Integer

  Public Sub New(Optional X As Integer = 0, Optional Y As Integer = 0)
    MX = X
    MY = Y
  End Sub

  Public Overrides Function ToString() As String 
    Return "(" & MX & "," & MY & ")"
  End Function
End Class

Module OptionalPoint
  Sub Main
    Dim P1 As New Point()
    Console.WriteLine(P1.ToString())

    Dim P2 As New Point(1, 1)
    Console.WriteLine(P2.ToString())

    Dim P3 As New Point(, 1)
    Console.WriteLine(P3.ToString())

    Dim P4 As New Point(9, )
    Console.WriteLine(P4.ToString())
  End Sub
End Module
(0,0)
(1,1)
(0,1)
(9,0)








6.30.Constructor
6.30.1.Class with constructor
6.30.2.Empty constructor
6.30.3.Default constructor
6.30.4.Copy constructor
6.30.5.Constructors in three levels
6.30.6.Overloaded constructors
6.30.7.Call member method in constructor
6.30.8.Private Constructor
6.30.9.Inheriting Constructors
6.30.10.Shared Constructor
6.30.11.Constructor with Optional parameter
6.30.12.Constructor Chain
6.30.13.constructor inheriting