vote up -4 vote down star

Hi all,

I have something like this:

classes A to D all have variables var1, var2, var3, var4, var5
class A has an extra variable var6
class B doesn't have var6, but do have the variables var7, var8
class C is the same as B, but has an extra variable var9
class D only has an extra variable, var10

How should i implement this?

The behavior of all the classes is the same: show data. (In a later stage all the classes need save, update and delete functionality. The name of the methods are the same, but the implementation is different.)

flag

59% accept rate
To put it succinctly: plz show us teh codez. – George Stocker Dec 15 '08 at 12:41
Exactly. Probably you want to make class A a base class. – divo Dec 15 '08 at 12:43
That's the problem. I cannot code because i don't know how to start/implement.. – Martijn Dec 15 '08 at 12:43
Btw, is this homework? – divo Dec 15 '08 at 12:44
Hehe, no this ain't homework. I'm at work now and nobody around here can help me. – Martijn Dec 15 '08 at 12:46
show 4 more comments

6 Answers

vote up 11 vote down check

showing the codez:

public abstract class Baseclass
{
    string var1;
    string var2;
    string var3;
    string var4;
    string var5;
}

class ClassA : Baseclass
{
    string var6;
}

class ClassB : Baseclass
{
    string var7;
    string var8;    
}

class ClassC : ClassB
{
    string var9;
}

class ClassD : Baseclass
{
    string var10;
}

Just made them strings for the fun of it.

Now with class diagram: alt text

link|flag
Thnx! Looks nice! – Martijn Dec 15 '08 at 14:50
vote up 8 vote down

Another reason to enter some monday afternoon ascii art:

           *-------*
           |class X|
           |-------|
           | var1-6|
           *-------*
               ^
               |
    ________________________
    |          |           |
*-------*  *-------*   *-------*
|class A|  |class B|   |class D|
*-------*  *-------*   *-------*
| var6  |  | var7,8|   | var10 |
*-------*  *-------*   *-------*
               ^
               |
               |
           *-------*
           |class C|
           |-------|
           | var9  |
           *-------*
link|flag
did you just type that out? – Nathan W Dec 15 '08 at 12:59
Yup, its monday afternoon. – Gamecat Dec 15 '08 at 13:00
Wow man +1 using ASCII art – Josh Dec 15 '08 at 13:32
vote up 0 vote down

Here and Here for good tutorials on inheritance.

link|flag
vote up 1 vote down

class Parent { public var var1, var2, var3, var4, var5; }

class A : Parent { public var var6; }

class B : Parent { public var var7, var8; }

class C : B { public var var9; }

class D : Parent { pubilc var var10; }

link|flag
Are you sure you want to make everything public? – George Stocker Dec 15 '08 at 12:59
I wasn't paying any attention to scope really, just trying to be as basic as possible for the original question asker. – ng5000 Dec 15 '08 at 13:01
vote up 2 vote down

Inherit A from X. (X having 1-5) and add 6 to A, X being and abstract class. Inherit D from X. and add 10, Inherit B from X and add 7 and 8 and so on and so forth.

Hope you get the concept.

link|flag
but this ain't very easy-reference, right? – Martijn Dec 15 '08 at 12:49
+1 for obsfucated answer to obsfucated question! – George Stocker Dec 15 '08 at 12:51
Reference should be through properties or getter/setter methods. – Gamecat Dec 15 '08 at 13:02
Life ain't easy ... but thats how it is ;) – Drejc Dec 15 '08 at 13:05
vote up 2 vote down

I think you should take a look into the inheritance concept

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.