项目需要通过设备ID来存储当前设备的可用Ip地址,如果放在Array里面,每次去除deviceID对应的Ip地址需要遍历。所以想利用类似于Java中Map这种key-value的形式,对数据进行操作。
果然,答案是Object类似于Java中的HashMap。
-------------
Demo1:添加数据
var temp:Object = new Object();
temp["ThinkPad"] = "10.1.1.1";
temp["LePad"] = "10.1.1.3";
temp["lePhone"] = "10.1.1.5";
-------------
Demo2:根据key删除当前记录
delete temp["LePad"];
-------------
Demo3: 根据Key获取对应的记录
var tempIp:String = temp["LePhone"];
-------------
Demo4: 关于Object的遍历---获取key
for( var i:String in temp){
Alert.show( "key =" + i); //获取key值
Alert.show( "key =" + temp[i]); //获取value
}
-------------
Demo5:关于Object的遍历----获取value
for each( var ip:String in temp){
Alert.show( "value =" + ip);
}