klyn.Type.createInstance
method
public createInstance(args... as Object) as Object throws Exception:
Description

Creates an instance of this type through reflection.

Constructor overloads are selected from both the supplied argument count and their runtime types. Exact types take precedence over compatible base types and implicit widening numeric conversions. Constructors with default trailing parameters can be called with omitted arguments.

Parameters
ParameterDescription
argsConstructor arguments.
Returns

New instance.

Throws
  • Exception if no constructor matches or if construction fails.
Example
user = User.type.createInstance("Alice") as User