我重写了数组集合的addItem()函数,我想检测添加的项是否实现了特定的接口.
以前我使用,是运算符来检测类类型,但现在我正在使用类的接口,我宁愿测试以查看对象是否实现了接口.
我希望我可以尝试将对象转换为接口并查看它是否为null.这是最好的方法吗?
我也可以创建一个只接受接口类型对象的新addFunction().
解决方法
您仍然可以使用is来测试接口.
<?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768" creationComplete="application1_creationCompleteHandler(event)"> <fx:Script> <![CDATA[ import mx.events.FlexEvent; public var test:TestInterface = new TestInterface() //implements ITestInterface protected function application1_creationCompleteHandler(event:FlexEvent):void { trace(test is ITestInterface); //true } ]]> </fx:Script> </s:Application>