Java中没有foreach关键字,不过对于集合类,你可以这样遍历: for(String s : queue){ System.out.println(s); } 这是JDK1.6之后才有的特性,用JDK1.6之前的版本会报错。