VB.Net Classes & Objects

When you define a class, you're essentially creating a blueprint for a data type. This does not describe any data, but it does define what the class name signifies, that is, what a class object will consist of and what operations may be performed on such an object. Objects are subclasses of a class. Members of a class are the methods and variables that make up the class.

Class Definition

A class definition begins with the keyword Class, is followed by the class name, and is concluded with the End Class statement. The general form of a class definition is as follows:

[ ] [ accessmodifier ] [ Shadows ] [ MustInherit | NotInheritable ] [ Partial ] _ Class name [ ( Of typelist ) ] [ Inherits classname ] [ Implements interfacenames ] [ statements ] End Class

Partial: denotes a class definition that is only partially complete.

Inherits : indicate the base class from which it is descended.

Implements: provides the interfaces from which the class derives .

Member Functions and Encapsulation

A member function of a class is a function that, like any other variable, has its definition or prototype within the class declaration. It can act on any object of the class to which it belongs and has access to all the members of that class for that object.

Member variables are (from a design standpoint) attributes of an object that are kept private to implement encapsulation. These variables are only accessible through the public member functions.

Constructors and Destructors

A class constructor is a special member Sub of a class which is called whenever new objects of that class are created. A constructor’s name is New, and it has no return type. A default constructor does not have any parameters, although a constructor can have parameters if necessary. These constructors are known as parameterized constructors. This technique allows you to assign an object's initial value at the time of its creation.

A destructor is a special member Sub of a class called whenever an object of that class exits its scope. “Finalize” is the name of a destructor, and it can neither return a value nor take any parameters. Destructors can be very useful for releasing resources before exiting the program, such as shutting files, releasing memories, and so on. Destructors cannot be passed down or overloaded.

Shared Members of a VB.Net Class

Using the ‘Shared’ keyword, we may define class members as static. When we declare a class member as Shared, no matter how many class objects are generated, only one copy of the member exists.

The keyword ‘Shared’ signifies that a class has just one instance of the member. Shared variables are used to define constants since their values can be retrieved by executing the class without creating an example.

Shared variables can be set up outside of the scope of a member function or class definition. Shared variables can also be initialized within the class definition.

A member function can alternatively be declared as Shared. Such functions can access only Shared variables. Shared functions occur before the creation of the object.

Inheritance

The concept of inheritance is one of the most significant in object-oriented programming. Inheritance enables us to define one class in terms of another, making it easier to design and manage applications. This also allows for the reuse of code functionality and a quick implementation time.

Instead of developing entirely new data members and member functions when creating a class, the programmer can specify that the new class should inherit the members of an existing class. The old class is known as the base class, and the new class is known as the derived class.

Base & Derived Classes

A class can be derived from many base classes or interfaces, which means it can inherit data and functionalities from multiple base classes or interfaces.

The syntax for generating derived classes in VB.Net is as follows:

 Class
Class : Inherits

End Class

Base Class Initialization

The base class's member variables and member methods are passed down to the derived class. As a result, the superclass object should be generated before the subclass. In VB.Net, the superclass or base class is known as ‘MyBase’.

VB.Net supports multiple inheritances.

Previous Topic

VB.Net Exception Handling >