1 / 8

Visual Basic.NET – OOP Part-1

Visual Basic.NET – OOP Part-1. Rully Yulian MF MCAD,MCPD,MCT,MVP VB.NET Independent IT Trainer - Application Developer http://www.yulianmf.com rully@yulianmf.com. Overview. Class & Object Access Modifier Class Member Encapsulation Abstract Class Interface. Class & Object. Class

linus
Download Presentation

Visual Basic.NET – OOP Part-1

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. Visual Basic.NET – OOP Part-1 Rully Yulian MF MCAD,MCPD,MCT,MVP VB.NET Independent IT Trainer - Application Developer http://www.yulianmf.com rully@yulianmf.com

  2. Overview • Class & Object • Access Modifier • Class Member • Encapsulation • Abstract Class • Interface

  3. Class & Object • Class • Merupakan Blue Print dari sebuah object • Design time sebuah Object • Code at Design Time • Object • Representasi dari Class • Instantiasi Class • Dialokasikan didalam Heap Memory

  4. Access Modifier • Merupakan keyword yang digunakan untuk membatasi aksesibilitas sebuah class member. Access modifier ini dapat berupa : • Private • Aksesibilitas hanya untuk class yang bersangkutan • Public • Aksesibilitas yang tidak terbatas • Friend • Aksesibilitas hanya untuk assembly yang sama • Protected • Aksesibilitas untuk class yang bersangkutan dan class turunannya • Protected Friend • Aksesibilitas Protected untuk assembly yang sama

  5. Class member yang menyediakan akses terhadap elements object atau class Properties Class member yang merepresentasikan data class tersebut. Fields Class member yang mendifinisikan action yang dapat dilakukan class atau object Methods Action yang dapat di respond atau di handle didalam code Events Class Member

  6. Encapsulation Encapsulation ialah kemampuan sebuah object atau class untuk menyembunyikan detail implementasi • Menyembunyikan data internal dan algoritma • Diakses lewat public interface Keuntungan dari Encapsulation • Code eksternal lebih simple dan konsisten • Detail implementasi dapat dirubah kemudian

  7. Interface • Merupakan struktur program yang mendefinisikan contract berupa Property dan Method • Tidak menyediakan implementasi detail • Implementasi detail diserahkan pada class yang implement Interface tersebut • Semua member di dalam Interface harus diimplementasikan pada class yang implement Interface tersebut. • Perubahan di dalam Interface harus merubah code class yang implement Interface tersebut • Public Interface IDataManipulation Function SaveData As Boolean Sub DeleteData(ByVal ObjectID As Integer) End Interface

  8. Abstract Class • Merupakan class yang dijadikan sebagai Base Class • Menyediakan fungsionalitas umum untuk class turunannya • Dideklarasikan dengan keyword MustInherit • Tidak dapat langsung diinstantiasi • Public MustInherit Class Shape ‘……Code End Class

More Related