问题
I want to instantiate a Vector.<Number> with two values of 1.0
You might think I would do Vector.<Number>(1.0, 1.0); but that only traces 0
Is what I'm trying to do possible? If so, how? Or am I stapled to the routine of using .push ?
回答1:
This one is even shorter:
var vec:Vector.<Number> = new <Number>[1.0, 1.0];
来源:https://stackoverflow.com/questions/8864773/as3-vector-with-init-values