Home »

What is the meaning of a final class and a final method?

Question ListCategory: PHPWhat is the meaning of a final class and a final method?
jamessmith05 author asked 9 years ago
1 Answers
alisataylore190 author answered 8 years ago

final’ is introduced in PHP5. Final class means that this class cannot be extended and a final method cannot be overrided.

Please login or Register to Submit Answer