Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#
Tip/Trick

Determine number of classes to be used

Rate me:
Please Sign up or sign in to vote.
3.20/5 (4 votes)
22 Feb 2011CPOL 11.2K   4   4
Use XML representation of data to figure out object oriented design

This tip is especially for those friends who just started using OOPS concepts and are facing difficulty in determining number of classes to be used for any given scenario. I used this visual technique for getting a quick hint during days as a fresher so thought of writing about it.

For any scenario (given as requirement), try to visualize and draw its equivalent structure in XML format, through it you can at least have a better picture about classes needed.

E.g. We are trying to describe a zoo that can have number of animals and staff members:

XML
<Zoo>
  <Animals>
    <Animal Name="Elephant">
      <Cage Number="102">
      </Cage>
      <!-- Additional details -->
    </Animal>
    <Animal Name="Lion">
      <Cage Number="104">
      </Cage> 
      <!-- Additional details -->
    </Animal>
  </Animals>
  <Staff>
    <Keeper Name="Adam"></Keeper>
  </Staff>
</Zoo>

The corresponding classes will look like:

C#
public class Zoo 
{
    public Collection<Animal> Animals { get; set; }
    public Collection<Keeper> Staff { get; set; }
}

public class Animal 
{
    public string Name { get; set; }
    public Cage Cage { get; set; }
}

public class Cage 
{
    public int Number { get; set; }
}

public class Keeper 
{
    public string Name { get; set; }
}

Now as per more clear needs, keep modifying XML inputs and correspondingly your classes.

License

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


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

Comments and Discussions

 
GeneralIt is not just the data that you deal with in the software t... Pin
OldWiseLlama28-Feb-11 18:25
OldWiseLlama28-Feb-11 18:25 
GeneralReason for my vote of 4 Good visual tip, thanks for sharing. Pin
joelcarroll28-Feb-11 12:45
joelcarroll28-Feb-11 12:45 
GeneralReason for my vote of 1 useless Pin
Manish K. Agarwal22-Feb-11 2:57
Manish K. Agarwal22-Feb-11 2:57 
GeneralRe: Thanks for the feedback. This trick is not for an experience... Pin
r verma22-Feb-11 14:18
r verma22-Feb-11 14:18 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.