Click here to Skip to main content
       

C#

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page  Show 
AnswerRe: Design QuestionmemberRahul Rajat Singh15 Nov '12 - 21:43 
Why not make I2 and abstract class so that when I2's methods are not implemented by ClassA the default empty implementation will work. here is some sample code:
 
Note: Replace I2 with A2 and ClassA and ClassA2 are two possible versions you could have for ClassA
 
    public interface I1
    {
        void A();
        void B();
    }
    public abstract class A2 : I1
    {
        public virtual void C()
        {
            //nothing in default implementation
        }
        public virtual void D()
        {
            //nothing in default implementation
        }
 
        #region I1 Members
 
        public abstract void A();
        public abstract void B();
 
        #endregion
    }
 
    // case 1
    // fuction A and B will be there always
    // not implementing C and D
    public class ClassA : A2
    {
        public override void A()
        {
 
        }
 
        public override void B()
        {
 
        }
    }
 
    // case 2
    // fuction A and B will be there always
    // ALSO implementing C and D
    public class ClassA2 : A2
    {
        public override void A()
        {
 
        }
 
        public override void B()
        {
 
        }
 
        public override void C()
        {
 
        }
 
        public override void D()
        {
 
        }
    }
Every now and then say, "What the Elephant." "What the Elephant" gives you freedom. Freedom brings opportunity. Opportunity makes your future.

GeneralRe: Design QuestionmemberTheGermoz15 Nov '12 - 23:14 
Is there a plus in this design with respect my one?
AnswerRe: Design QuestionmemberRahul Rajat Singh15 Nov '12 - 23:22 
Strictly talking from a designs standpoint - Yes there is.
 
You see when we have an interface we are saying that we are defining a contract and all the classes implementing this interface should implement this contract i.e. methods. We cannot then say that we need to selectively implement the methods.
 
The abstract class says that, I am providing a default implementation and the derived class is free to have his own IF it needs to.
 
So in your case you needed some functions to be implemented selectively and some mandatory so following the design principle, I moved the mandatory ones in the contract i.e. the interface and the optional ones in abstract class. and in this particular case the default implementation of optional methods is to do nothing.
 
I hope i am able to convey my thoughts clearly. Do let me know if not. I am also open to counter arguments as they will only enhance my learning. (counter arguments == brainstorming) i.e. always beneficial Smile | :)
Every now and then say, "What the Elephant." "What the Elephant" gives you freedom. Freedom brings opportunity. Opportunity makes your future.

AnswerRe: Design QuestionmemberBobJanova15 Nov '12 - 23:12 
TheGermoz wrote:
class A can implements I1 or I2 depending on how it is constructed

This is a dead giveaway for poor design. Inheritance hierarchies are telling you what operations you can do on an object, and you should be able to tell from the type of something what you can do with it. That is, an instance of A should always be treatable as an I2, or never.
 
What you almost certainly want to do is:
 
interface I1 {
 void A();
 void B();
}
 
interface I2 : I1 {
 void C();
 void D();
}
 
class A : I1 {
 // Implementations of the I1 functionality, and the I1 type constructor
 public virtual void A() {}
 public virtual void B() {}
}
 
class A2 : A, I2 {
 // Implementations of the I2 functionality, and the I2 type constructor
 public void C() {}
 public void D() {}
 
 // You can also override implementations from A
 public override void A() {
  base.A();
  // other stuff
 }
}

GeneralRe: Design QuestionmemberTheGermoz15 Nov '12 - 23:16 
yes this is my degign I propose, I was wandering if it is ok
GeneralRe: Design QuestionmemberRahul Rajat Singh15 Nov '12 - 23:35 
This is good. +5.
 
P.S. We might do away with the interface containing the optional functions as these are not a part of the contract. Also we can make class A as abstract to make sure no one is able to create it directly as its only purpose is to facilitate default implementation for optional functions.
 
I tried to do this design this way. I would love to hear your opinion on it:
 
http://www.codeproject.com/Messages/4429095/Re-Design-Question.aspx[^]
Every now and then say, "What the Elephant." "What the Elephant" gives you freedom. Freedom brings opportunity. Opportunity makes your future.

GeneralRe: Design QuestionmemberBobJanova16 Nov '12 - 0:09 
Since we don't know what the interfaces or the class 'A' represent we can't be sure what the contracts needed are. But as the question has two interfaces in it, it seems likely that he needs both, and publicly instantiable classes that implement each.
 
Rahul Rajat Singh wrote:
Also we can make class A as abstract to make sure no one is able to create it directly as its only purpose is to facilitate default implementation for optional functions.

I don't think that's true. The original question suggests that it is possible to construct an A which is fully functional but only supports the I1 operations, and that it's also possible to construct an A which additionally implements I2. That means you need a concrete class and a concrete subclass.
AnswerRe: Design QuestionmemberSledgeHammer0116 Nov '12 - 9:53 
Is there a reason why you are using interfaces? Too many .NET programmers make the mistake of thinking they need to use interfaces everywhere. Just like any other technology/construct/etc., you should only use interfaces when appropriate.
 
Is anybody using your class external to your app?
 
Based on the information you provided in your post, your design should be:
 
class A
{
virtual void a();
virtual void b();
}
 
class B : A
{
virtual void c();
virtual void d();
}
 
why over complicate? KISS.
GeneralRe: Design QuestionmemberTheGermoz16 Nov '12 - 10:06 
Yes really there is a reason, the example was a very simplify version of may real problem. Anyway I appreciate your answer
AnswerRe: Design QuestionmemberClifford Nelson16 Nov '12 - 9:53 
Make interface I1 an abstract class instead (A1) or just create the class, whichever makes more sense, and inherit from A1 when you implement I2. Probably no reason to have the interface and the base class A1

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 24 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid