ActionScript读取Vector的DataType?

时间:2010-05-24 16:56:12

标签: actionscript-3 vector

是否可以读取向量的数据类型?

var vec:Vector.<int> = new Vector.<int>;
trace(the datatype of vec);
//ideally this would output 'int'

1 个答案:

答案 0 :(得分:1)

您可以使用describeType函数返回一个描述vec类型的xml,然后获取<和{{{{}}之间的向量的类型名称1}}或使用将返回班级名称的函数getQualifiedClassName

>