C#: Determine derived object type from a base class static method - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T13:29:27Z http://stackoverflow.com/feeds/question/300181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method 1 C#: Determine derived object type from a base class static method Steve Hawkins 2008-11-18T21:20:45Z 2008-11-18T22:45:58Z <p>In a C# program, I have an abstract base class with a static "Create" method. The Create method is used to create an instance of the class and store it locally for later use. Since the base class is abstract, implementation objects will always derive from it.</p> <p>I want to be able to derive an object from the base class, call the static Create method (implemented once in the base class) through the derived class, and create an instance of the derived object.</p> <p>Are there any facilities within the C# language that will allow me to pull this off. My current fallback position is to pass an instance of the derived class as one of the arguments to the Create function, i.e.: </p> <pre><code>objDerived.Create(new objDerived(), "Arg1", "Arg2"); </code></pre> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300186#300186 1 Answer by technophile for C#: Determine derived object type from a base class static method technophile 2008-11-18T21:22:46Z 2008-11-18T21:22:46Z <p>You can't do it without outside information; either the type of the derived class, an instance of it, or the fully-qualified name of the derived class. Any of these are equivalent to what you're already doing; there isn't a better solution I'm aware of. The very nature of static methods precludes anything more elegant.</p> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300189#300189 2 Answer by Joel Coehoorn for C#: Determine derived object type from a base class static method Joel Coehoorn 2008-11-18T21:24:53Z 2008-11-18T21:47:57Z <p>Sounds like you need to make the Create() method abstract. And once you do that you might as well rename it and make it the constructor as well. Then you can have a different Init() method that you call after the object is constructed if you need to, and normal polymorphism effects will handle things.</p> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300207#300207 7 Answer by chilltemp for C#: Determine derived object type from a base class static method chilltemp 2008-11-18T21:35:15Z 2008-11-18T21:45:36Z <p>Try using generics:</p> <pre><code>public static BaseClass Create&lt;T&gt;() where T : BaseClass, new() { T newVar = new T(); // Do something with newVar return T; } </code></pre> <p>Sample use:</p> <pre><code>DerivedClass d = BaseClass.Create&lt;DerivedClass&gt;(); </code></pre> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300253#300253 1 Answer by Charles Bretana for C#: Determine derived object type from a base class static method Charles Bretana 2008-11-18T21:46:42Z 2008-11-18T22:45:58Z <p>You want to create a new instance of derived from inside another instance of derived, using a static factory method on the abstract base class? if so, I wonder Why... But ... </p> <pre><code> public abstract class MyBase { public static T GetNewDerived&lt;T&gt;() where T : MyBase, new() { return new T(); } } public class DerivedA : MyBase { public static DerivedA GetNewDerived() { return GetNewDerived&lt;DerivedA&gt;(); } } public class DerivedB : MyBase { public static DerivedB GetNewDerived() { return GetNewDerived&lt;DerivedB&gt;(); } } </code></pre> <p>Is this what you want ?</p> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300264#300264 0 Answer by Chris Marisic for C#: Determine derived object type from a base class static method Chris Marisic 2008-11-18T21:50:27Z 2008-11-18T21:50:27Z <p>I'm not sure what your design goals are but from what you asked it sounds like it might end up with alot of code smell. I think you should really look into the Inversion of Control(IoC) / Dependency Injection (DI) design patterns that are implemented in numerous frameworks such as Microsoft Unity, Castle Windsor, StructureMap, Ninject, Spring.Net and so forth.</p> <p>I think if you look at using an IoC container it will solve your problem in a much cleaner and loosely coupled way.</p> http://stackoverflow.com/questions/300181/c-determine-derived-object-type-from-a-base-class-static-method/300347#300347 0 Answer by Jeff Yates for C#: Determine derived object type from a base class static method Jeff Yates 2008-11-18T22:17:46Z 2008-11-18T22:17:46Z <h2>Summary</h2> <p>There are two main options. The nicer and newer one is to use generics, the other is to use reflection. I'm providing both in case you need to develop a solution that works prior to .NET 2.0.</p> <h2>Generics</h2> <pre><code>abstract class BaseClass { public static BaseClass Create&lt;T&gt;() where T : BaseClass, new() { return new T(); } } </code></pre> <p>Where the usage would be:</p> <pre><code>DerivedClass derivedInstance = BaseClass.Create&lt;DerivedClass&gt;(); </code></pre> <h2>Reflection</h2> <pre><code>abstract class BaseClass { public static BaseClass Create(Type derivedType) { // Cast will throw at runtime if the created class // doesn't derive from BaseClass. return (BaseClass)Activator.CreateInstance(derivedType); } } </code></pre> <p>Where the usage would be (split over two lines for readability):</p> <pre><code>DerivedClass derivedClass = (DerivedClass)BaseClass.Create(typeof(DerivedClass)); </code></pre>