Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • Cool thanks, I actually had something like this in mind but I planned to omit the factory classes, put class references in the map (instead of the factories), and then create the function by getting and invoking the constructor via reflection. But that would probably not by very effective I think... Commented Jan 20, 2015 at 17:49
  • 1
    In general, avoid reflection if you can. It adds complexity that can be avoided. Factories are complicated enough without it. Commented Jan 20, 2015 at 17:53