Advertisement
setiyawanarif

manusia.php

Feb 24th, 2013
845
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. class Manusia extends MakhlukHidup{
  4.     private $name;
  5.  
  6.    
  7.     public function setNama($nama){
  8.             $this->name=$nama;
  9.      }
  10.     public function  getNama(){
  11.         return $this->name;
  12.     }
  13.  
  14.     public function runMakan($name){
  15.         //protected method hanya bisa di akses dalam sub kelas, jadi kalau ingin di ambil
  16.         //oleh kelas lain harus di dijadikan public
  17.         // bernfas adalah method protected dari kelas makhlukhidup hanya bisa di akses oleh
  18.         //sub kelas nya jika langsung dipakai di kelas lain tidak bisa
  19.    
  20.     return $this->bernafas($name);
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement