Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an Array of primitives, for example for int, int[] foo. It might be a small sized one, or not.

int foo[] = {1,2,3,4,5,6,7,8,9,0};

What is the BEST way to create from it an Iterable ?

Iterable<Integer> fooBar = Convert(foo);

Notes:

Please do not answer using loops (unless you can give a good explanation on how the compiler do something smart about them?)

Also note that

int a[] = {1,2,3};
List<Integer> l = Arrays.asList(a);

Will not even compile

Type mismatch: cannot convert from List<int[]> to List<Integer>

Also check Why is an array not assignable to Iterable? before answering.

Also, if you use some library (e.g., Guava), please explain why this is the Best. ( Because its from Google is not a complete answer :P )

Last, since there seems to be a homework about that, avoid posting homeworkish code.

share|improve this question
possible duplicate of Iterator for array – NPE Apr 26 '12 at 14:38
Add them to an LinkedList then just return the iterator of that Set. – Legend Apr 26 '12 at 14:39

4 Answers

Integer foo[] = {1,2,3,4,5,6,7,8,9,0};

List<Integer> list = Arrays.asList(foo);
or
Iterable<Integer> iterable= Arrays.asList(foo);

Though you need to have Integer array not int array for this to work.

share|improve this answer
2  
Two notes: 1) he has int, not Integer 2) List is already Iterable so the third line is pointless. – maksimov Apr 26 '12 at 14:51
he needs Iterable that why there is third line. – fmucar Apr 26 '12 at 14:55
So the second line is pointless then? ;) – maksimov Apr 26 '12 at 15:03
2nd and 3rd lines are options i would say :) – fmucar Apr 26 '12 at 15:37
This is not part of a homework, I was just trying to avoid duplicating code for a debugging function processing the contents of an array or list... While looking around I did indeed find Arrays.asList(..);, but at least Eclipse seems to think it will not do what i want (e.g., It infers the result of Arrays.asList(foo) as a List<int[]>, not List<Integer>...) I found this interesting enough for a question... (-Breaking comment in parts cause of limits-) – ntg Apr 27 '12 at 7:19
show 5 more comments

Guava provides the adapter you want as Int.asList(). There is an equivalent for each primitive type in the associated class, e.g., Booleans for boolean, etc.

int foo[] = {1,2,3,4,5,6,7,8,9,0};
Iterable<Integer> fooBar = Ints.asList(foo);
for(Integer i : fooBar) {
    System.out.println(i);
}

The suggestions above to use Arrays.asList won't work, even if they compile because you get an Iterator<int[]> rather than Iterator<Integer>. What happens is that rather than creating a list backed by your array, you created a 1-element list of arrays, containing your array.

share|improve this answer

just my 2 cents:

final int a[] = {1,2,3};

java.lang.Iterable<Integer> aIterable=new Iterable<Integer>() {

    public Iterator<Integer> iterator() {
       return new Iterator<Integer>() {
            private int pos=0;

            public boolean hasNext() {
               return a.length>pos;
            }

            public Integer next() {
               return a[pos++];
            }

            public void remove() {
                throw new UnsupportedOperationException("Cannot remove an element of an array.");
            }
        };
    }
};
share|improve this answer

I had the same problem and solved it like this:

final YourType[] yourArray = ...;
return new Iterable<YourType>() {
  public Iterator<YourType> iterator() {
     return Iterators.forArray(yourArray);   // Iterators is a Google guava utility
  }
}

The iterator itself is a lazy UnmodifiableIterator but that's exactly what I needed.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.