Hi, Im developing a simulator that has to initially check if some components are working [eg hardware] before it proceeds.
i know i can use if statements to do this. But was just wondering it would be better if i use vectors or array to do the same by populating an array or vector with the hardware component status and retrieve the data that way…
please advice me where ever you can
eg
i have class Hardware that performs a series of test eg
var compArray:Array;
compArray = new Array(needleCheck(),resevoirCheck(),componentCheck());
needleCheck(); // returns true
resevoirCheck(); // returns true
componentCheck() // returns false
i also wanted to know what does this mean ? it doesnt throw any error but it dont make any sense to me as i am still gettin the hang of vectors
var sample:Vector.<Hardware> = new Vector.<Hardware>();
please help
kind regards
surf