Empty constructor : Constructor « Class Module « VB.Net Tutorial






Imports System

Module Test
  Sub Main()
    Dim p1 as New Point()
    Dim p2 as New Point(100,100) 
    Console.WriteLine(p1)
    Console.WriteLine(p2)
  End Sub
End Module

Class Point
  Private X as Integer
  Private Y as Integer

  Sub New()
  End Sub

  Sub New(x as integer, y as Integer)
    Me.X = x
    Me.Y = y
  End Sub

  Public Overrides Function ToString() as String
    Return("(" & X & "," & Y & ")")  
  End function
End Class
(0,0)
(100,100)








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