Creating and intialising different sub-types without lots of casting - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:39:51Zhttp://stackoverflow.com/feeds/question/584871http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/584871/creating-and-intialising-different-sub-types-without-lots-of-casting3Creating and intialising different sub-types without lots of castingMattSlay2009-02-25T05:58:13Z2009-02-25T06:11:19Z
<p>Boy, I am sure am messing around with a lot of casting and such in this code below. It seems like there should be a smoother way. I'm basically trying to use a builder method (CreateNewPattern) to handle creating new objects of the passed sub-class type (by the CreateNewCircularPattern and CreateNewLinePattern methods). I presently only have two sub-classed types CircularHolePattern and SingleLineHolePattern that inherit from HolePattern, but I expect to have more as my app grows.</p>
<p>Is this a place for using a delegate or a lambda? It know nothing about them, so please be as specific as possible with and code suggestions.</p>
<pre><code>private CircularHolePattern CreateNewCircularPattern()
{
var CreatedPattern = CreateNewPattern(typeof(CircularHolePattern));
return (CircularHolePattern)CreatedPattern;
}
private SingleLineHolePattern CreateNewLinePattern()
{
var CreatedPattern=CreateNewPattern(typeof(SingleLineHolePattern));
return (SingleLineHolePattern)CreatedPattern;
}
private HolePattern CreateNewPattern(Type PatternTypeToCreate)
{
var NewHolePattern = (HolePattern)Activator.CreateInstance(PatternTypeToCreate);
NewHolePattern.PatternName = "Pattern #" + (HolePatterns.Count + 1).ToString();
this.AddPattern(NewHolePattern);
this.SetActivePattern(NewHolePattern);
return NewHolePattern;
}
</code></pre>
http://stackoverflow.com/questions/584871/creating-and-intialising-different-sub-types-without-lots-of-casting/584885#5848856Answer by Marc Gravell for Creating and intialising different sub-types without lots of castingMarc Gravell2009-02-25T06:05:28Z2009-02-25T06:05:28Z<p>I suspect you want generics:</p>
<pre><code>private T CreateNewPattern<T>() where T : HolePattern, new()
{
var newHolePattern = new T();
newHolePattern.PatternName = "Pattern #" +
(HolePatterns.Count + 1).ToString();
this.AddPattern(newHolePattern);
this.SetActivePattern(newHolePattern);
return newHolePattern;
}
private SingleLineHolePattern CreateNewLinePattern() {
return CreateNewPattern<SingleLineHolePattern>();
}
private CircularHolePattern CreateNewCircularPattern() {
return CreateNewPattern<CircularHolePattern>();
}
</code></pre>
<p>The <code>T</code> is the generic-type-argument; the type we want to create. The <code>where</code> says "it must be <code>HolePattern</code> or a sub-type, and it must have a public parameterless constructor" - this lets us use <code>new T()</code> to create a new instance of it, and access all members of <code>HolePattern</code> against such instances (such as <code>PatternName</code>). This also allows us to call the methods that accept a <code>HolePattern</code> as an argument.</p>
http://stackoverflow.com/questions/584871/creating-and-intialising-different-sub-types-without-lots-of-casting/584888#5848880Answer by sduplooy for Creating and intialising different sub-types without lots of castingsduplooy2009-02-25T06:07:15Z2009-02-25T06:07:15Z<p>For one, you could reduce the Create...Pattern methods to</p>
<pre><code>private CircularHolePattern CreateNewCircularPattern()
{
return CreateNewPattern(typeof(CircularHolePattern));
}
</code></pre>
<p>Another suggestion might be to only work in abstractions. For example, only return HolePattern types from the Create...Pattern methods instead of their concrete types such as CircularHolePattern. You are casting them down to HolePattern in any case. </p>
<p>So, CreateNewCircularPattern becomes</p>
<pre><code>private HolePattern CreateNewCircularPattern()
{
return CreateNewPattern(typeof(CircularHolePattern));
}
</code></pre>