What is the difference between final Class and Class?
final class A { } class B { }
Final means that no one can inherit from this class.