public List<Place> getAllInactivePlaces() {
return this.placeDAO.findAllUnApprovedList();
}
Run Code Online (Sandbox Code Playgroud)
嗨我上面显示的方法是找到所有的地方.我需要的是,我想转换队列以获得这样的FIFO -----
Queue<Place>placeQueue=getAllInactivePlaces();
Run Code Online (Sandbox Code Playgroud) java ×1