var str = [];
str.push(1);
str.push(2);
str.push(3);
alert(str[0]); //1
这种先进先出的数据结构 称之为 队列 而不是栈
java 中的 list 结构也为 队列结构