Featured Posts

Writing Website Scrapers in PHPWriting Website Scrapers in PHP This article discusses about how to write a website scraper using PHP for web site data extraction. The concepts taught can be applied and programmed in Java, C#, etc. Basically any language that has a...

Readmore

12 common programming mistakes to avoid12 common programming mistakes to avoid Programming is an art and science and like all art and science the only way to learn is from mistakes. I have made many... and I would like to share with you the mistakes that I have made over my journey...

Readmore

7 habits of highly effective freelance programmers7 habits of highly effective freelance programmers I have developed these based on my freelancing experience. Though I have discontinued freelancing, but would like to share my practices with you. These are basic practices and have been developed over...

Readmore

  • Prev
  • Next

PHP 5 Tutorial - Final Class and Methods

Posted on : 14-02-2008 | By : admin | In : PHP, PHP Class Examples, PHP Tutorials, PHP5 OOPS Tutorials

5

If you're new here, you may want to subscribe to my Newsletter. Thanks for visiting!

In this PHP tutorial we will understand the following:

  • Meaning of Final Class
  • Meaning of Final Method
  • When to declare a class as final
  • When to declare a method as final

Meaning of Final Class

A final class is a class that cannot be extended. To declare a class as final, you need to prefix the ‘class’ keyword with ‘final’. Example below.

 
final class BaseClass {   
   public function myMethod() {
      echo "BaseClass method called";
   }
}
 
//this will cause Compile error
class DerivedClass extends BaseClass {
   public function myMethod() {
      echo "DerivedClass method called";
   }
}
 
$c = new DerivedClass();
$c->myMethod();

In the above example, BaseClass is declared as final and hence cannot be extended (inherited). DerivedClass tries to extend from BaseClass and hence the compiler will throw a compile error.




Meaning of Final Method

A final method is a method that cannot be overridden. To declare a method as final, you need to prefix the function name with the ‘final’ keyword. Example below:

 
class BaseClass {   
   final public function myMethod() {
      echo "BaseClass method called";
   }
}
 
class DerivedClass extends BaseClass {
   //this will cause Compile error
   public function myMethod() {
      echo "DerivedClass method called";
   }
}
 
$c = new DerivedClass();
$c->myMethod();

In the above example, DerivedClass extends from BaseClass. BaseClass has the method myMethod() declared as final and this cannot be overridden. In this case the compiler causes a compile error.




When to declare a class as final

You should declare a class as final when you think that you implementation of that class should not change in the derived class. You should do this mainly for Utility classes where you don’t want the behavior/implementation of your class to change.

When to declare a method as final

You should declare a class method as final when you think that the method you develop contains necessary functionality to support your application and any modification or change to the functionality can cause unexpected errors/bugs.

Please feel free to write back for any clarification.

Subscribe to my free newsletter:

Your email:

 

Related Posts on PHP5 Tutorial - Object Oriented Programming (OOPS)

  1. PHP5 Tutorial - Learn to create a PHP5 Class
  2. PHP5 Tutorial - Learn to Create a PHP5 Class Object
  3. PHP5 Tutorial - Defining Attributes of a PHP5 Class
  4. PHP5 Tutorial - Defining Methods of a PHP5 Class
  5. PHP5 Tutorial - Creating a PHP5 Constructor __construct()
  6. PHP5 Tutorial OOPS - Creating a PHP5 Destructor __destruct()
  7. PHP5 Tutorial OOPS - PHP5 Class Access Specifiers - public, private and protected
  8. PHP5 Tutorial - $this variable explained
  9. PHP5 Tutorial - instanceOf Operator Explained
  10. PHP5 Tutorial - Defining Class Constants
  11. PHP5 Tutorial - Inheritance
  12. PHP5 Tutorials - Abstract Class and Interface
  13. PHP5 OOPS Tutorials - Polymorphism
  14. PHP 5 Tutorials - Static Data Members and Methods
  15. PHP5 Tutorial - Magic Methods - __toString() method
  16. PHP5 Tutorial - Magic Methods - __get() and __set()
  17. PHP5 Tutorial - Magic Methods - __isset() and __unset()
  18. PHP5 Tutorial - Magic Methods - __call() method
  19. PHP5 Tutorial - Magic Methods - __autoload() method
  20. PHP5 Tutorial - Magic Methods - __sleep() and __wakeup()
  21. PHP5 Tutorial - Magic Methods - __clone() method

Comments (5)

Hello,

When I am running the codes written above I neither get the output nor the result. What is reason behind it ? Please help to find the answer.

Regards.

Hi Amit,

The program’s above will cause a compiler error. Check your error reporting settings in php.in files or set it to error_reporting(E_ALL) in your script and execute it again.

The example actually shows that a final class and method cannot be overridden.

Regards,
Suniil
http://www.careercurry.com - Great Career Articles and Advice

Hi Sunil,

I have add the statement you mentioned in my programming. But still it is not providing any error message.

Also let me know something about php.ini file and how to tackle it and manage it efficiently.

My code is as below.

M1();

?>

I have a request. I have few things to learn about Advanced PHP. As I found your way of teaching suits me I like to ask you. Should I ask on the Forum or there is a better place ? I will be obliged if you kindly help me.

Regards.

Hi Sunil,

Please ignore the last message. I found the code is missing. Please do the needful.

I have add the statement you mentioned in my programming. But still it is not providing any error message.

Also let me know something about php.ini file and how to tackle it and manage it efficiently.

My code is as below.

M1();

?>

I have a request. I have few things to learn about Advanced PHP. As I found your way of teaching suits me I like to ask you. Should I ask on the Forum or there is a better place ? I will be obliged if you kindly help me.

Regards.

Hello,

Some problem is arising and hence I cannot add the code here. Please take a look.

Regards.

Write a comment

Enter this code