falco Posted May 10, 2003 Posted May 10, 2003 Can someone give a practical example of why you would use an abstract class vs. a regular class? Thanks Quote
*Gurus* divil Posted May 10, 2003 *Gurus* Posted May 10, 2003 Abstract classes are where you want to write most of the functionality for a class but leave certain members to be implemented by whoever inherits your class. You define these members in the abstract class. Classes cannot be instantiated directly while they have any members of an abtract class that haven't been implemented. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.