1 / 7

PBO

PBO. - PERTEMUAN 5- ABSTRACT CLASS. CLASS ABSTRACT. Sebuah class abstract adalah class yang tidak dapat di -instantiate. Method dalam class abstract yang tidak mempunyai implementasi dinamakan method abstract.

oria
Download Presentation

PBO

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. PBO - PERTEMUAN 5- ABSTRACT CLASS

  2. CLASS ABSTRACT • Sebuahclass abstract adalah class yang tidakdapatdi-instantiate. • Method dalam class abstract yang tidakmempunyaiimplementasidinamakanmethod abstract. • Untukmembuat method abstract, tinggalmenulisdeklarasi method tanpatubuh class dandigunakanmenggunakankatakunci abstract. • Contoh : public abstract void someMethod();

  3. Contoh • SuperclassbernamaLivingThing • class inimempunyai method tertentusepertibreath, eat, sleep, dan walk. • Akantetapi, adabeberapa method didalamsuperclass yang sifatnyatidakdapatdigeneralisasi. • Kita ambilcontoh, method walk. Tidaksemuakehidupanberjalan(walk) dalamcara yang sama. • Ambilmanusiasebagaimisal, kitamanusiaberjalandengandua kaki, dimanakehidupanlainnyasepertianjingberjalandenganempat kaki. • itulah mengapa kita inginkan membuat superclass umum dalam hal ini.

  4. Contoh Class Abstract

  5. Ketika class meng-extend class abstract LivingThing, dibutuhkanuntuk override method abstract walk(), ataulainnya, juga subclass akanmenjadi class abstract, olehkarenaitutidakdapatdi-instantiate. Contohnya, • public class Human extends LivingThing { public void walk(){ System.out.println("Human walks..."); } }

  6. TUGAS 5 • Buat Program untuk input data hasilkerajinan, denganpilihan menu sbb : • Pilihan Menu JenisKerajinan : • KerajinanKayu • Kerajinan Rotan • KerajinanBambu • Exit • Jika user memilih (1) KerajinanKayu, maka • Inputkancontohhasilkerajinankayu 1 : • Inputkancontohhasilkerajinankayu 2 : • Inputkancontohhasilkerajinankayu 3 : • Tampilkan data semuainputanhasilkerajinantersebut.

More Related