Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have no problems converting a Set of Strings to a string[] array, but I'm having problems doing so with converting a Set of Integer to an int[] array. How can I convert the Integers to its primitive?

I cannot seem to find any related questions. Any quick suggestions that can help?

Sometimes, autoboxing cannot be used, as in the case of arrays. I don't think an array of integers will automatically be converted to an array of ints.

share|improve this question
1  
Not possible with toArray(T[]). Just loop over it yourself and let autoboxing do its job. – BalusC Aug 19 '11 at 15:09
Why do you want an int? Any specific reason that Integer is not ok? – Nivas Aug 19 '11 at 15:13

6 Answers

string[] doesn't exist, I guess you mean String[].

For converting a Set<Integer> to int[] you'd have to iterate over the set manually.

Like this:

Set<Integer> set = ...;

int[] arr = new int[set.size()];

int index = 0;

for( Integer i : set ) {
  arr[index++] = i; //note the autounboxing here
}

Note that sets don't have any particular order, if the order is important, you'd need to use a SortedSet.

share|improve this answer
1  
yes lol. thats what i meant Thomas. sorry typo error. Thank you though. – L-Samuels Aug 19 '11 at 15:11
For some reason its not allowing the type of element to be of Integer in the for each loop. – L-Samuels Aug 19 '11 at 15:58
1  
Then it's not a Set<Integer> but a Set or Set<SomethingElse>. – BalusC Aug 19 '11 at 21:16

This is why Guava has an Ints.toArray(Collection<Integer>) method, returning int[].

share|improve this answer

I guess the problem is that Set<Integer>.toArray converts to Integer[], rather than int[]. So you have no simple way: you need to iterate through the set manually and add its elements to the int array. Converting an individual Integer to int is handled by autoboxing in Java 5 and above.

share|improve this answer

you can call the

Integer.intValue();

function...

lemme know more specifics of what you need :)

share|improve this answer
Thanks Piyush. Ill have a go using this function. – L-Samuels Aug 19 '11 at 15:12
balus got it right mate! Please accept the answer if u liked it :) – MozenRath Aug 19 '11 at 15:12

If you use Java 5+ Autoboxing should take care of this...!

What error do you get?

edit: ok i see..

Like other said:

loop on your Set and just put the Integer inside the int[], autoboxing should convert it.

share|improve this answer

This should work, assuming auto unboxing!

Set<Integer> myIntegers; // your set
int[] ints = new int[myInts.size()];
int index = 0;
for(Integer i : myIntegers){
    ints[index++] = i;
}
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.