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 ...
15
votes
7answers
750 views
Why doesn't the String class in Java implement Iterable?
Many Java framework classes implement Iterable, however String does not. It makes sense to iterate over characters in a String, just as one can iterate over items in a regular array.
Is there a ...
15
votes
5answers
4k views
Why aren't Enumerations Iterable?
In Java 5 and above you have the foreach loop, which works magically on anything that implements Iterable:
for (Object o : list) {
doStuff(o);
}
However, Enumerable still does not implement ...
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);
...
6
votes
5answers
179 views
Why are Iterable<E> and Iterator<E> in different packages?
Iterable<E> is in java.lang whereas Iterator<E> is in java.util. Is there a good reason for this or is this merely an artifact of bad design?
It seems strange since the only thing that an ...
6
votes
3answers
161 views
Why do so many methods use Collection rather than Iterable?
With C# I grew to love the IEnumerable<T> interface. There are a lot of cases where that's all you want to give out and take in. In addition it's useful in the .Net library. You have for example ...
6
votes
3answers
160 views
java: design pattern for paged results
So there's Iterable and Iterator and List. What do you use if you are trying to provide an interface to other Java code, in order to encapsulate functionality provided by a remote service that returns ...
5
votes
5answers
624 views
Java: why can't iterate over an iterator?
I read http://stackoverflow.com/questions/839178/why-is-javas-iterator-not-an-iterable and http://stackoverflow.com/questions/27240/why-arent-enumerations-iterable, but I still don't understand why ...
4
votes
2answers
73 views
Is the “condition” of a for loop called each time for Iterables?
Lets say I have the following code:
for (Object obj : Node.getIterable()) {
//Do something to object here
}
and Node.getIterable() returns an iterable. Does the getIterable() function get ...
4
votes
10answers
2k views
“Iterable<Element> cannot be cast to List<Element>” - Isn't `List` a type of `Iterable`?
I called a getElements method which returns Iterable<Element>.
I did this:
List<Element> elements = (List<Element>) getElements();
This generates the error:
...
4
votes
5answers
362 views
Java: why does Collection.addAll can not accept Iterables?
I wonder why the Collection.addAll() method only accepts other Collections but not Iterables. Why is that?
Any similar method to do that for Iterables?
4
votes
10answers
1k views
Java: why are iterators not copyable
I would think that Iterator.copy() would be quite a handy function. You could implement iterator filters in a much better way.
For example, the only reason in Googles Java Collection for the filter ...
4
votes
5answers
477 views
What is the Iterable interface used for?
I am a beginner and I cannot understand the real effect of the Iterable interface.
3
votes
2answers
194 views
java: concurrent iteration over an immutable Iterable
I have an immutable Iterable<X> with a large number of elements. (it happens to be a List<> but never mind that.)
What I would like to do is start a few parallel / asynchronous tasks to ...
3
votes
3answers
408 views
Java Iterator and Iterable
I am trying to understand Java Iterator and Iterable interfaces
I am writing this class
class MyClass implements Iterable<String>{
public String[] a=null;
public MyClass(String[] ...
2
votes
3answers
287 views
What is the difference between iterator and iterable and how to use them?
I am new in Java and I'm really confused with iterator and iterable. Can anyone explane to me and give some examples?
2
votes
3answers
138 views
Implementing the Iterable interface
I just found this exam question in an old exam paper and am readying myself for an upcoming exam. I cannot figure it out :
The following depicts a contrived partial class which implements the ...
2
votes
4answers
876 views
LinkedList implementation in Java with generics and enhanced for
I need you to review my implementation of a Singly Linked List (SLL) please. The implementation should use generics and be able to use the enhanced for.
The problem is that, when I do for (Number n ...
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?
2
votes
5answers
1k views
java iterator/iterable subinterface
I have an interface for a variety of classes, all of which should implement Iterator, so I have something like
public interface A extends Iterable<A> { ...otherMethods()... }
For the concrete ...
1
vote
2answers
56 views
Chunking an iterable
I have a method to get a load of objects from a database, which returns an Iterable.
For now, I am loading a resultset from a database, building objects from it and populating a collection with those ...
1
vote
4answers
61 views
To implement an iterable type or not?
When should one consider implementing Iterable<T> as opposed to having a collection as an instance field? What are the benefits/consequences?
1
vote
1answer
275 views
Generic class implementing Iterable
I want to have a generic class that implements Iterable (let's call it ImplIterable) of type T that implements an Iterable interface over some class (that isn't of the generic class type); for ...
1
vote
2answers
234 views
Implementing the Java Iterable<E> interface
public class C1 implements Iterable<NC1> {
private LinkedList<NC1> list;
public static class NC1 {
...
}
...
x public Iterator<NC1> ...
1
vote
4answers
971 views
How to create an iterable wrapper for TreeMap and HashMap (Java)?
I have a class MyMap which wraps TreeMap.
(Say it's a collection of dogs and that the keys are strings).
public class MyMap {
private TreeMap<String, Dog> map;
...
}
I would like to turn ...
1
vote
2answers
193 views
Java, Google Collections Library; problem with AbstractIterator?
I am using the Google Collections library AbstractIterator to implement a generator. I ran across a problem while doing so; I've reduced it to a more basic type and reproduced the problem. This ...
0
votes
2answers
58 views
inheritance and Iterable
public interface IPowerList<T> extends Iterable< T > {
public int bitFlag(List<T> subseq);
}
public class PowerList<T> implements IPowerList<T>{
private List<T> ...
0
votes
8answers
65 views
Java iteration problem
"Catalog" is a class that stores a collection of "Item" objects. I have chosen to use a List collection for this purpose. So it looks like:
public class Catalog {
List<Item> itemList;
...
0
votes
2answers
306 views
Treat a java.lang.Iterable as a #list expression in Freemarker
I have a java.lang.Iterable (in fact, a com.google.gson.JsonArray instance).
I would like to enumerate the items in the list using freemarker (2.3.16).
[#assign sports = controller.sports]
[#-- At ...
0
votes
2answers
199 views
can i use iterable traverse the list again and again in “foreach”?
can i use iterable traverse the list again and again?
when i use ArrayList,i can traverse the list again and again in "foreach" ,but when i use iterable as a parameter in a function in hadoop(a ...