Информация о типах времени выполнения(Run-Time Type Information)
bool b = object is SomeTypeName;Type type = object.get_type();
stdout.printf("%s\n", type.name());Type type = typeof(Foo);
Foo foo = (Foo) Object.new(type);Last updated
Was this helpful?