Tagged Questions
20
votes
9answers
26k views
Java: Get first item from a collection
If I have a collection, such as Collection<String> strs, how can I get the first item out? I could just call an Iterator, take its first next(), then throw the Iterator away. Is there a less ...
12
votes
4answers
349 views
Why is there a method iterator() on java.util.Collection
Why is there the method iterator() defined on the interface java.util.Collection when it already extends java.util.Iterable which has this very method defined.
I'm thinking some sort of backward ...
8
votes
2answers
164 views
Why there is no getFirst(iterable) method?
Iterables present two methods for getLast
public static <T> T getLast(Iterable<T> iterable);
public static <T> T getLast(Iterable<T> iterable, @Nullable T defaultValue);
...
2
votes
1answer
52 views
How to Create a Method that only accepts elements that implement Iterable
I want to write a function printAll(), which accepts only those elements that implement that implement Iterable so that I can iterate over them and print the elements. How do I do that?