摘要:
相关链接:http://younglab.blog.51cto.com/416652/287382XML转ArrayCollection一般情况直接转换import mx.collections.ArrayCollection;import mx.rpc.xml.SimpleXMLEncoder;import mx.rpc.xml.SimpleXMLDecoder;private var tip:XML= <tips> <tip> <no>1</no> <date>2011/10/19</date> <content 阅读全文
摘要:
元素添加通过push和pop方法可以用一个Array类的一个实例构建一个栈的数据结构。通过这样的数据结构,可以实现更为复杂的算法。定义:vartempArr:Array=newArray();push://添加“Enya“到tempArr的尾部,tempArr中内容为Enya tempArr.push("Enya ");unshift://将“I“添加到tempArr头部,tempArr中原有元素往后移,tempArr中内容为I Enya tempArr.unshift("I ");元素插入splice//删除从索引位置“1”开始的0个元素,在此位置添加 阅读全文