Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用非空对象调用 describeType(object) 时,出现此错误:
无法访问空对象引用的属性或方法。
会是什么呢?
我正在使用 Flex SDK 4.6。
请在访问任何可能出现空值/偶然获得空值的对象之前进行检查。if(objName != null){ //写下你的代码 } ...它永远不会给出 1009 错误。但首先要确定您从哪里以及为什么获得访问对象的空引用。这是识别和解决问题的正确方法。但是在遇到问题后,如果它无法解决,那么请应用我建议的解决方法。