Flex 编译器警告 - 变量“item” 没有类型声明
我正在努力自己学习弹性编程。 下面的代码给了我一个警告
<块引用>变量“item”没有类型声明。
var xml:XML = xml as XML;
for each (var item in xml.employee) {
Alert.show(item.@name);
}
变量item的类型是什么? 我以为是 XMLNode,但它给了我错误。 我想删除编译警告。
I am tyring to learn flex programming myself. Below code gives me a warning
variable 'item' has no type declaration.
var xml:XML = xml as XML;
for each (var item in xml.employee) {
Alert.show(item.@name);
}
What is the type of variable item? I thought it was XMLNode, but it give me error. I want to remove the compile warning.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请使用这个,您还没有初始化项目。
Use this please, you haven't initialized item.