调用hasNext()的重载方法hasNext(String patten):如果下一个标记与从指定字符串构造的模式匹配,则返回 true。

while (!in.hasNext("EOF")){
stack.push(in.nextInt());
}