Panduranga Nadikuda
What is the use of abstract class ?
By Panduranga Nadikuda in .NET on Sep 24 2016
  • Mukesh Kumar
    Sep, 2017 5

    Incomplete class

    • 0
  • satya panda
    Jun, 2017 5

    Abstract classes are used in scenarios, when there is a need of Multi level inheritances of classes, and they should also implement a Interface. Eg: suppose you have a interface named InterfaceTest with 4 properties and class A has implemented this interface. Now the situation arises that i have to inherit a Class B from Class A. Now when Class B tries to inherit from Class A, Class B will be forced to implement the interface properties which are already implemented by the Class A. So this will continue unless you , place a Abstract Class between Interface and Class A. In this scenario the abstract class will implement the interface , and the class A will inherit from the abstract class.But now the difference, is the Class A , need not implement any of the interface properties.

    • 0
  • sanjay kumar
    Mar, 2017 23

    1.If you are designing large functional units, use an abstract class. 2.If you want to provide common, implemented functionality among all implementations of your component, use an abstract class. 3.Abstract classes allow you to partially implement your class

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS