More Details :
Live Training in jaipur
Abstract class is a class that can not be instantiated, it exists
extensively for inheritance and it must be inherited. There are
scenarios in which it is useful to define classes that is not intended
to instantiate; because such classes normally are used as base-classes
in inheritance hierarchies, we call such classes abstract classes.
Abstract classes cannot be used to instantiate objects; because abstract classes are incomplete, it may contain only definition of the properties or methods and derived classes that inherit this implements it's properties or methods.
Static, Value Types & interface doesn't support abstract modifiers. Static members cannot be abstract. Classes with abstract member must also be abstract.
No comments:
Post a Comment