In the following manner we can describe abstract class: -
Definitely, this sample does not take out actually how things are implemented in live projects. You put all your common functionalities or half implemented functionality in parent abstract class and later let child class define the full functionality of the abstract class. Example we always use abstract class with all my SET GET properties of object in abstract class and later make specialize classes for insert, update, delete for the corresponding entity object.
My attitude towards abstract class has been that i put all my common functionality in abstract class.
Following you can also view video on different types of collections available in .NET:
Please click here to see more .NET/OOPS interview questions
- We can not create a object of abstract class.
- Abstract class is designed to act as a base class (to be inherited by other classes). Abstract class is a design concept in program development and provides a base upon which other classes are built.
- Abstract classes are similar to interfaces. After declaring an abstract class, it cannot be instantiated on its own, it must be inherited.
- In VB.NET, abstract classes are created using “MustInherit” keyword.In C# we have “Abstract” keyword.
- Abstract classes can have implementation or pure abstract methods, which should be implemented in the child class.
Definitely, this sample does not take out actually how things are implemented in live projects. You put all your common functionalities or half implemented functionality in parent abstract class and later let child class define the full functionality of the abstract class. Example we always use abstract class with all my SET GET properties of object in abstract class and later make specialize classes for insert, update, delete for the corresponding entity object.
Public MustInherit Class ClsAbstract ‘Use the mustinherit class to declare the class as abstract Public Function Add(ByVal intnum1 As Integer, ByVal intnum2 As Integer) As Integer Return intnum1 + intnum2 End Function ‘Left this second function to be completed by the inheriting class Public MustOverride Function MultiplyNumber(ByVal intnum1 As Integer, ByVal intnum2 As Integer) As Integer End Class
Public Class ClsChild Inherits ClsAbstract ‘ class child overrides the Multiplynumber function Public Overrides Function MultiplyNumber(ByVal intnum1 As Integer, ByVal intnum2 As Integer) As Integer Return intnum1 * intnum2 End Function End ClassFollowing is the output snapshot for the above code:
My attitude towards abstract class has been that i put all my common functionality in abstract class.
Following you can also view video on different types of collections available in .NET:
Please click here to see more .NET/OOPS interview questions
Regards,
Visit Authors blog for more .NET and OOPS interview questions
No comments:
Post a Comment