News:

This week IPhone 15 Pro winner is karn
You can be too a winner! Become the top poster of the week and win valuable prizes.  More details are You are not allowed to view links. Register or Login 

Main Menu

C++ tips - Type-tests, lists, and switch statements

Started by ben2ong2, October 07, 2006, 09:48:12 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ben2ong2

PROBLEM: You are not allowed to view links. Register or Login (Chris Jasek)

Let's say I have a class hierarchy:

         Animal
         /  \
        /    \
      Dog    Cat

And then I create a list of Animals that contains Dog and
Cat class objects.  Of course when I get an item from the
list it must be returned as the base class type i.e. Animal.
From this pointer to an Animal that is returned there is no
way to access specific methods in either the Dog or Cat class.


RESPONSE: You are not allowed to view links. Register or Login (Chris Vale)

Assume Animal, Dog, and Cat have a memeber called isA. Then
Animal a = GetFromList();
switch( a.isA() ) {
CAT:
   do cat stuff
   break;
DOG:
   do dog stuff
   break;
}


RESPONSE: You are not allowed to view links. Register or Login (Robert Martin), 17 Sep 93

The current standard provides a feature very similar to isA so that you can
ask an object what type it is.  This is sometimes useful.   However if
used generally, it leads to design problems.

In the Animal/Cat/Dog structure above, are there any common methods in
Animal?  If not, then Animal probably does not deserve to be a base
class.  If so, then the users of a list of Animal objects should
confine themselves to those methods.  If you have the need to operate
specifically upon Cats and Dogs, you should probably create a list of
Cats and a seperate list of Dogs

Let me stress that one of the fundemental benefits of OOP is the
ability to eliminate the kind of typeswitching shown in the example
above.  Such switches are maintenance bottlenecks since they must
constantly be found and updated whenever some new kind of animal is
added to the program.

If you find yourself needing switch statments to test the type of an
object, then you should re-think your design.  Try to determine a
class hierarchy and abstract interface which will make the switch
irrelevent.  This is the *hard* part of OOD.

You are not allowed to view links. Register or Login
You are not allowed to view links. Register or Login