Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
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.
type ParentFactory func(string) Parent
var fact ParentFactory = func(str string) Parent {
return Parent{
name: str,
}
}
A Factory is a function which returns an object.
Go doesn't have subtyping, but Parent could be any type: struct, interface, etc.
Go doesn't have subtyping, but Parent could be any type: struct, interface, etc.
class Parent {
constructor(str) {}
fact(new_class, str) {
if (new_class.prototype instanceof Parent) {
return new new_class(str)
}
}
}
class Child extends Parent {}
type Parent = class
constructor create(const str: string);
end;
type ClassOfParent = class of Parent;
function fact(ClassType: ClassOfParent; const str: string): Parent;
begin
result := ClassType.Create(str);
end;
sub fact {
my ($class, $str) = @_;
return $class->new($str) if $class->$_isa('Parent');
}
def fact(a_class, str_):
if issubclass(a_class, Parent):
return a_class(str_)
You can use the class like a function.
def fact(klass, str)
klass.new(str) if klass.is_a?(Parent)
end
fn fact<Parent: std::str::FromStr>(str: String, _: Parent) -> Parent where <Parent as FromStr>::Err: Debug
{
return str.parse::<Parent>().unwrap();
}