Click here to Skip to main content
15,892,746 members
Articles / Web Development / ASP.NET

Object Composition Over Inheritance

Rate me:
Please Sign up or sign in to vote.
3.78/5 (8 votes)
1 May 2011CPOL3 min read 61.9K   470   12  
Why to prefer object composition over inheritance
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;

namespace WrongInheritance.ClassesAndInterfaces
{
    public class Manager:UserBase
    {
        protected override void ExecutePrintCommand(object parameter)
        {
            MessageBox.Show("Executing Print command");
        }
        protected override void ExecuteFaxCommand(object parameter)
        {
            MessageBox.Show("Executing Fax command");
        }
        protected override void ExecuteEmailCommand(object parameter)
        {
            MessageBox.Show("Executing Email command");
        }
        protected override void ExecuteScanCommand(object parameter)
        {
            MessageBox.Show("Executing Scan command");
        }
        public Manager()
        {
            Name = "Manager";
            Experience = 10;
            base.Initialize();
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

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


Written By
Software Developer
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions