1 / 22

Object Oriented Programming

Object Oriented Programming. Procedure for Defining a Class Declaring Methods What Is Inheritance? Using Constructors Using Destructors Declaring Properties Examples. Procedure for Defining a Class. To define a class in Visual Basic .NET, you can follow this general procedure:

zaina
Download Presentation

Object Oriented Programming

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Object Oriented Programming

  2. Procedure for Defining a Class • Declaring Methods • What Is Inheritance? • Using Constructors • Using Destructors • Declaring Properties • Examples

  3. Procedure for Defining a Class • To define a class in Visual Basic .NET, you can follow this general procedure: • 1. Add a class to the project. • 2. Provide an appropriate file name for the class when you add it. This will name both the file and the class itself. If you do not change the file name when you add it, you can change the class name at any time by changing the • class definition in the code window. • 3. Create constructors as needed. • 4. Create a destructor if appropriate. • 5. Declare properties. • 6. Declare methods and events. • Note: In Visual Basic .NET, you can define more than one class in a single file. You are not limited to one class per file,

  4. Declaring Methods • As shown in the following example: • Public Class TestClass • Public Sub TestIt(ByVal x As Integer) • ... • End Sub • Public Function GetIt( ) As Integer • ... • End Function • End Class

  5. What Is Inheritance? • can use inheritance to derive a class from an existing base class. The derived class can inherit all the base class properties, methods, data members, events, and event handlers, making it easy to reuse the base class code throughout an application. • The following example shows how to use the Inherits keyword to define a derived class that will inherit from an existing base class: • Public Class DerivedClass • Inherits BaseClass • ... • End Class • use the MustInheritkeyword to define classes that are not intended to be used directly as instantiated objects. The resulting class must be inherited as a base class for use in an instantiated derived class object. If the client code attempts to instantiate an object based on this type of class, a compiler error is generated, as shown in the following example:

  6. What Is Inheritance? Public MustInherit Class BaseClass ... End Class ... 'Client code Dim x As New BaseClass( ) 'Generates a compiler error

  7. Using Constructors • you control the initialization of new objects by using procedures called constructors(The Sub New constructor) and has the following features: • The code in the Sub New block will always run before any other code in a class. • the Sub New constructor will only run once: when an object is created. • Sub New can only be called explicitly in the first line of code of another constructor, from either the same class or a derived class using the MyBasekeyword. • Every class has a constructor. Even when you don't define one, a default constructor is added in the background • The default constructor looks like this :

  8. Example:

  9. Using Destructors • Can control what happens during the destruction of objects by using procedures called destructors. • Destructors or finalizer is a method used to deallocate the resources of an object that are no longer used, its invoked automatically by the VB.net environment. • The Finalize method is a Sub procedure that should always be protected and overrides the Finalize method of the base class. However, unlike a constructor, the Finalize method of the base classes in the hierarchy do not run unless explicitly called with MyBase.Finalize in the derived class . • Example: • Protected Overrides Sub Finalize() • Console.WriteLine("Calling Destructor") • Ens Sub

  10. Using Destructors • who has the control over the destructor (in VB.NET)? it's the .Net frameworks Garbage Collector (GC). • Now few questions arise why GC should control destructors why not us? • GC can do better object release than we can. • There is chance that one can forgot de-allocation • time consuming and complex process. • If program ends GC automatically reclaims all the memory occupied by the objects in the program. • GC keeps tracks of all the objects and ensures that each object gets destroyed once. • GC ensures that objects, which are being referenced, are not destroyed. • GC destroys the objects only when necessary. Some situations of necessity are memory is exhausted or user explicitly calls System.GC.Collect() method.

  11. Using Destructors • When client code has no further need for an object’s resources, it can directly call code placed in the Dispose method of the object. However, note that you may cause an exception if you attempt to run the Dispose code twice. An exception can occur if you have already closed or released an object. • 'Class code • Public Sub Dispose( ) • 'Check that the connection is still open • ... • conn.Close 'Close a database connection • GC.SuppressFinalize(Me) • End Sub • Protected Overrides Sub Finalize( ) • Dispose( ) 'Optional call to Dispose • End Sub

  12. Using Destructors • 'Client code • Dim x as TestClass = New TestClass( ) • ... • x.Dispose( ) 'Call the object's dispose method • if the client code called the Dispose method directly, the connection would be closed and the Finalize method would not be called by garbage collection. If the client did not call the Dispose method, the Finalize method will still execute when garbage collection destroys the object.

  13. Declaring Properties • declare your properties by using two code blocks in a single procedure, as follows: • Private intMyData As Integer • Public Property MyData( ) As Integer • Get • Return intMyData • End Get • Set (ByVal Value As Integer) • intMyData = Value • End Set • End Property

  14. Using Read-Only Properties • You can create read-only properties by using the ReadOnlykeyword when you declare the property. • Public ReadOnly Property MyData( ) As Integer • Get • Return intMyData • End Get • End Property • Note: You cannot use the Set block when defining read-only properties because the property cannot be updated. The compiler will generate an error if you attempt to do this.

  15. Using Write-Only Properties • You can create write-only properties by using the WriteOnlykeyword when you declare the property. • Public WriteOnly Property MyData( ) As Integer • Set (ByVal Value As Integer) • intMyData = Value • End Set • End Property • Note: You cannot use the Get block when defining write-only properties because the property is not readable. The compiler will generate an error if you attempt to do this.

  16. What is the output

  17. What is the output

  18. What is the output

  19. What is the output

  20. What is the output

  21. What is the output

More Related