What is Final?
Final is as modifiers which can be applicable for classes, methods, variables. If we declare variable as final then it becomes Constant that means reassignment is not possible (we cannot change the value). If you declare a method as final as you cannot override that in child class. If you declare a class as final you cannot extend that class means that inheritance is not possible.
What is Finally?
The finally is{
//
}
//
}
//
}
What is finalize?
The finalize
No comments:
Post a Comment