stack1.push(data);
出队:
if(stack2.size()<=0){
while(stack1.size()>0){
stack1.pop();
stack2.push(data);
}
if(stack2.size()==0){
错误;
stack2.pop();