Aren't there any better ways of displaying an object other than using hierarchy? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T05:19:19Zhttp://stackoverflow.com/feeds/question/186649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/186649/arent-there-any-better-ways-of-displaying-an-object-other-than-using-hierarchy3Aren't there any better ways of displaying an object other than using hierarchy?Sklivvz2008-10-09T10:18:15Z2008-10-17T08:13:16Z
<p>I have a class hierarchy as such:</p>
<pre><code> +-- VirtualNode
|
INode --+ +-- SiteNode
| |
+-- AbstractNode --+
|
+-- SiteSubNode
</code></pre>
<p>And a corresponding <code>NodeCollection</code> class that is build on <code>INode</code>. In order to display a <code>NodeCollection</code> I need to know the final type of each member. So I need a function like this</p>
<pre><code>foreach (INode n in myNodeCollection)
{
switch(n.GetType())
{
case(typeof(SiteNode)):
// Display n as SiteNode
}
}
</code></pre>
<p>Now, this is really not an object oriented way of doing it. <strong>Are there any patterns or recommended ways of doing the same thing, in your opinion?</strong></p>
<p><strong>EDIT</strong><br />
I already thought of adding a <code>Display</code> or <code>Render</code> method to the INode interface. That has the side effect of coupling the view to the model, which I would really like to avoid.</p>
http://stackoverflow.com/questions/186649/arent-there-any-better-ways-of-displaying-an-object-other-than-using-hierarchy/186654#1866541Answer by Andrew for Aren't there any better ways of displaying an object other than using hierarchy?Andrew2008-10-09T10:20:08Z2008-10-09T10:20:08Z<p>What you're after is the <a href="http://en.wikipedia.org/wiki/Visitor_pattern" rel="nofollow">visitor pattern</a>, I think.</p>
http://stackoverflow.com/questions/186649/arent-there-any-better-ways-of-displaying-an-object-other-than-using-hierarchy/186703#1867031Answer by Ash for Aren't there any better ways of displaying an object other than using hierarchy?Ash2008-10-09T10:43:22Z2008-10-09T10:52:16Z<p><a href="http://en.wikipedia.org/wiki/Polymorphism_in_object-oriented_programming" rel="nofollow">Polymorphism:</a> </p>
<p>When ever you have a select statement using the type of an object, it is a prime candidate for refactoring to polymorphism.</p>
<p>Check out the book <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">Refactoring</a> by Martin Fowler:</p>
<p>"One of the most obvious symptoms of object-oriented code is its comparative lack of switch (or
case) statements. The problem with switch statements is essentially that of duplication. Often you
find the same switch statement scattered about a program in different places. If you add a new
clause to the switch, you have to find all these switch, statements and change them. The objectoriented
notion of polymorphism gives you an elegant way to deal with this problem.</p>
<p>Most times you see a switch statement you should consider polymorphism. The issue is where
the polymorphism should occur. Often the switch statement switches on a type code. You want
the method or class that hosts the type code value. So use Extract Method to extract the switch
statement and then Move Method to get it onto the class where the polymorphism is needed. At
that point you have to decide whether to Replace Type Code with Subclasses or Replace
Type Code with State/Strategy. When you have set up the inheritance structure, you can use
Replace Conditional with Polymorphism."</p>
<p>Here is one approach to using polymorphism in your situation:</p>
<ol>
<li><p>Define an abstract method in
AbstractNode named something like
Display().</p></li>
<li><p>Then actually implement Display() in
each of the SiteNode and SiteSubNode
classes.</p></li>
<li><p>Then, when you need to display these
nodes, you could simply iterate
through a collection containing
items of type AbstractNode and call
Display() for each. </p></li>
<li><p>The call to Display() will
automatically resolve to the actual
concrete implementation for the real
type of that item.</p></li>
<li><p>Note: You could also move the
Display() method from AbstractNode
to the INode interface if
VirtualNode is to be displayed.</p></li>
</ol>
http://stackoverflow.com/questions/186649/arent-there-any-better-ways-of-displaying-an-object-other-than-using-hierarchy/186724#1867240Answer by Franci Penov for Aren't there any better ways of displaying an object other than using hierarchy?Franci Penov2008-10-09T10:50:33Z2008-10-09T10:50:33Z<p>If you can change the INode interface - add a virtual method that returns the "view" and override it in the inherited classes.</p>
<p>If you can't change the base interface - implement extension methods for each of the classes and have them return the "view" of for each particular class.</p>