A simple code example of an abstract class of PHP

Source: Internet
Author: User

<?php//****** uses the keyword abstract to declare that the class is an abstraction class ***** abstract class person{      protected  $name;     protected  $age;      function  __construct ($name = "", $age =18) {                   $this->name= $name;                   $this->age= $age;                  }             //*** declares abstract methods in abstract classes ****      //*** abstract methods do not have to declare specific behavior ***      abstract function getname ();     abstract  Function getage ();          function greeting () {          echo  "Hello,world";          } }   //*** Abstract classes cannot be instantiated directly, but can only be inherited by subclasses ***  class newperson1 extends person{  The  //*** subclass must implement all the abstract methods in the abstract class ***     function getname () {              echo  "the name is ". $this Name. " <br/> ";             }      function getage () {              echo   "the age is ". $this->age. " <br/> ";               }    } $tom  = new newperson1 ("Tom"), $tom->getname (); $tom->getage (); $tom Greeting ();? >


A simple code example of an abstract class of PHP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.