Click here to Skip to main content
15,881,605 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Please give me a Real time Example for the Abstract Class?
Posted
Updated 27-Sep-12 23:50pm
v2
Comments
Zoltán Zörgő 28-Sep-12 5:50am    
What on earth do you mean by real time example? Didn't you mean real life example?

 
Share this answer
 
Read this one: http://codeofdoom.com/wordpress/2009/02/12/learn-this-when-to-use-an-abstract-class-and-an-interface/[^].
But let's see a real-life example:
I am using specialized controllers in an MVC project. These controllers are plugins, thus they have to be contracted via an interface. Thus I have defined a contract interface. But there are common tasks all these controllers have to do, thus I have made an abstract class, that implements this interface with some if the interface methods coded for real, but not all, they remain methods. This class can not be instantiated, but can be extended by the concrete controllers.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900