作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
搜索 'var:*' 有点棘手,因为大多数搜索引擎都找不到它。
与 var:Object 相比,我不清楚 var:* 的确切含义
我认为它可以让我在对象上设置任意属性,例如:
var x:* = myObject;
x.nonExistantProperty = "123";
Property nonExistantProperty not found on x
最佳答案
扩展其他答案,声明带有星号类型的内容与不输入类型完全相同。
var x:* = {};
var y = {}; // equivalent
var o:Object = {};
o.foo = 1; // fine
var a:* = o;
a.bar = 1; // again, fine
var s:String = "";
s.foo = 1; // compile-time error
var b:* = s;
b.bar = 1; // run-time error
b
是否是动态的,所以错误发生在运行时。
http://livedocs.adobe.com/labs/air/1/aslr/specialTypes.html#*
关于actionscript - var x :* mean in actionscript? 究竟是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/207494/
Feel free to skip straight to TL/DR if you're not interested in details of the question 简短的序言: 我最近决定
我一直在阅读 A Tour of Go学习Go-Lang到目前为止一切顺利。 我目前在 Struct Fields类(class),这是右侧的示例代码: package main import "fm
Last time I got confused顺便说一下PowerShell急切地展开集合,基思总结了它的启发式如下: Putting the results (an array) within a
我是一名优秀的程序员,十分优秀!