Total members 11890 |It is currently Sat Apr 20, 2024 12:45 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Code:
<?php
     
class shape {
          var
$x;
          var
$y;
   
          function
shape()  {
               print(
"Shape constructor called <br />");
          }
          function
get_x()  {
               return
$this->x;
          }
          function
get_y()  {
               return
$this->y;
          }
          function
set_x($x)  {
               
$this->x = $x;
          }
          function
set_y($y)  {
               
$this->y = $y;
          }
          function
move_to($x, $y)  {
               
$this->x = $x;
               
$this->y = $y;
          }
          function
print_data()  {
               print(
"Shape is currently at " . $this->get_x() . ":" .
                                                
$this->get_y() . "<br />");
          }
          function
draw()
          {}
     }
     class
rectangle extends shape
     
{
          function
rectangle($x, $y)  {
               
$this->move_to($x, $y);
          }
          function
draw()  {
               print(
"Drawing rectangle at " . $this->x . ":" .
                                               
$this->y . "<br />");
          }
          function
print_data()  {
               print(
"Rectangle currently at " . $this->get_x() . ":" .
                                                 
$this->get_y() . "<br />");
          }
     }
     
     
     
$rect1 = new rectangle(100, 100);
     
$rect1->draw();
     
$rect1->print_data();
?>




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Inheriting a Class in php
 Define class helper class to check the method existance     -  
 java abstract class,concrete class and interface     -  
 relationship between the Canvas class and the Graphics class     -  
 inner class that is a member of an outer class?     -  
 Define class inside another class C++     -  
 load class to applet- load frame class to applet     -  
 PHP example for a class     -  
 PHP class example     -  
 what is a concrete class     -  
 Array C++ Class     -  



Topic Tags

PHP OOP






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com