java.lang.Iterable error - What does this mean and how do I fix it?
问题 I've been trying to find an answer to this for a couple days now and have had no luck. It is very late and I am very tired so I thought I would put it up here and hope that someone out there can help. Here is my snippit of code that is popping an error in Eclipse. private void filterByTitle() { String title = Validator.getLine(sc, "Enter the Title to retrieve: "); System.out.println("\n" + Book.getHeadings()); for(Book book : bookList.filterListByTitle(title)) { System.out.println(book); } }