Home :: International :: Manuals :: Howto :: FAQ :: Man Pages :: Email Login

 
 

 

Object Abstraction

PHP 5 introduces abstract classes and methods. An abstract method only declares the method's signature and does not provide an implementation. A class that contains abstract methods needs to be declared abstract.

Esempio 14-4.

<?php
abstract
class AbstractClass {
   
abstract public function test();
}

class
ImplementedClass extends AbstractClass {
   
public function test() {
       echo
"ImplementedClass::test() called.\n";
   }
}

$o = new ImplementedClass;
$o->test();
?>

Abstract classes cannot be instantiated. Old code that has no user-defined classes or functions named 'abstract' should run without modifications.

 
 
 
 
Google
  Web Linuxinfor   
 

Home :: Copyright :: Privacy :: Credits :: Get a free Linuxinfor Email Account

Document on this page is part of "Manuale PHP". See Index Page for more info about Authorship and Copyright.

1999-2009 Linuxinfor.com. No rights reserved.