Alice in Wonderland is an upcoming fantasy-adventure film directed by Tim Burton. It is an extension to the Lewis Carroll novels Alice’s Adventures in Wonderland and Through the Looking-Glass. The film will use a [...]

Jennifer’s Body is a 2009 black comedy horror film written by Diablo Cody and directed by Karyn Kusama. The film stars Megan Fox, Amanda Seyfried, Adam Brody and Johnny Simmons and portrays a newly [...]

Sherlock Holmes is a 2009 film adaptation of Arthur Conan Doyle’s fictional character of the same name. The film was directed by Guy Ritchie and produced by Joel Silver, Lionel Wigram, Susan [...]

The Imaginarium of Doctor Parnassus is a 2009 fantasy film directed by Terry Gilliam and written by Gilliam and Charles McKeown. The film follows the leader of a travelling theatre troupe who, having made a deal [...]

Alice in Wonderland Movie Poster Megan Fox in Jennifer’s Body Sherlock Holmes Nominated for Golden Globe The Imaginarium of Doctor Parnassus

RESUME PBO PERT 2


PBO PERT 2
Pembuatan Class dan Objek
Class:
Konsep dasar :   - class adalah blueprint dari objek
                          - berisi definisi data dan method
                          - memiliki nama yang unik dan diawali huruf besar
                          - rancangan sebuah objek
Bentuk umum class :
Class Classname {
                //declare instance variables
                Type var 1;
                Type var 2;
                Type var 3;
                //declare methods
                Type method 1 (parameters) {
                                //body of method
                                }
                Type method2  (parameters) {
                                //body of method
                                }
}
Constructor Adalah method yang akan dipanggil ketika akan dibuat objek dari class tersebut.
Constructor memiliki karakteristik :
1.  Memiliki nama sama dengan nama class
2.  Harus didefinisikan public
3.  Tidak memiliki nilai-balik atau return value
4.  Biasanya berisi instruksi untuk inisialisasi data objek
5.  Hanya bisa dipanggil melalui instruksi new, yaitu pada saat objek baru dibuat
Contoh :  String str = new String ();
               Jframe frame = new Jframe (window);
     Sebuah class bisa memiliki constructor lebih dari satu, dengan aturan yang sama dengan aturan function-overloading. Multiple constructor ini dibuat untuk mengakomodasi berbagai model user; ada yang ingin membuat objek dengan data standar dan ada yang ingin membuat langsung dengan data yang ditentukan sendiri secara langsung.
Pembuatan Object
Object is instance of class
Point originOne = new point (23, 94);
“untuk membuat object originOne berarti harus sudah ada class point”
Tahapan-tahapan:
1. Declaration
2. Instantion
3. Initialization
ada 3 macam class :
1. Class benda
2. Class Formula
3. Class System
   semua jenis class menguasai class objek dan class tergantung yang di atas object yang kita tulis.
ada macam 4 P :
1. public
    Data yang sudah tidak dapat dihapus lagi.
2. Package
    Sama dalam 1 Folder maka dapat diakses.
3. protect
    private hanya untuk dirinya dan untuk turunan suatu class
4. private
    untuk class yang boleh mengakses hanya kelas itu sendiri.

NAMA : FREDY PRIYAMBODO
NIM     : 10.41010.0200




Share this post:

Digg it StumbleUpon del.icio.us Google Yahoo! reddit

0 komentar:

Posting Komentar

 
Copyright 2010 MASIH BELAJAR