PHP·98 questions

What is final?

Answer
final class — cannot be inherited.
final function — cannot be overridden.
For protection against modifications.
Immutable objects are often final.
Use consciously.
Was this answer helpful?

More questions in this topic

Related questions from other topics