【发布时间】:2018-12-29 23:23:50
【问题描述】:
如何使用 ActionScript 3 卸载 ByteArray? 凭记忆
我试过了:
// non-working solution no.1
byteArray.length = 0;
byteArray = new ByteArray();
// non-working solution no.2
for ( var i:int=0; i < byteArray.length; i++ )
{
byteArray[i] = null;
}
【问题讨论】:
标签: arrays actionscript-3 apache-flex