Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C++

Idiom #73 Create a factory

Create a factory named fact for any sub class of Parent and taking exactly one string str as constructor parameter.

#include <string>
#include <type_traits>
template <typename T,
          std::enable_if_t<
            std::is_base_of_v<Parent, T>, bool> = true>
T fact(const std::string& str) {
  return T(str);
}
auto fact(T, A...)(A a)
if (is(T==class) && is(T: Parent))
{
    return new T(a);
}

In D we can cover all the possible constructors using a variadic argument. Parent is checked statically with a constraint.

New implementation...
< >
bbtemp