4

How can I find out if an object implements an interface? In other words I need a possibility to check if an object can be cast to a specific type (e.g. a specific interface).

4

2 回答 2

9

Std.is(). 或者使用安全强制转换,如果失败会抛出错误。

于 2012-08-27T10:26:57.393 回答
-1

我猜你可以尝试创建对象并捕获类未找到异常。

于 2012-08-27T10:20:49.757 回答