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

Which form is preferred:

String my = "Which form shall I use?";
Iterator iter = my.iterator();

or

Iterator<String> iter = my.iterator();

I personally preferr the former but in my materials from uni they use the latter.

share|improve this question
1  
String has no method iterator(). – dacwe Jun 10 '10 at 10:26
2  
Why do you prefer the former? The latter is more type-safe. Btw, a String is not iterable. – Jesper Jun 10 '10 at 10:27
1  
Meaningless. The question is based on a false premiss. – EJP Jun 10 '10 at 11:05
@Jesper I prefer the former for the reason that there is less typing. And why on earth String isn't "iterable"? Seriously what's the reason behind it? Isn't String just another container? What would be illogical in having iterator which would allow me iterate over it? I just don't get it. – There is nothing we can do Jun 10 '10 at 11:18
@EJP I really don't understand what you mean. If you saying so because of the <String> just put anything ("iterable") there. – There is nothing we can do Jun 10 '10 at 11:22
show 2 more comments

4 Answers

up vote 11 down vote accepted

In the latter form, the Iterator is strongly typed which is preferable

share|improve this answer

You should use generics when the API provides it. That is, the latter alternative is preferrable.

Iterator iter = someList.iterator();
String s = (String) iter.next();  // prone to class cast exceptions.
                                  // What if someone for instance accidentally
                                  // put a CharSequence in the list?

vs

Iterator<String> iter = someList.iterator();
String s = iter.next();           // guaranteed typesafe at compile-time.

(String does not implement Iterable<String> however, but I'm sure you meant something like List<String> my = Arrays.asList("Which form shall I use?")

share|improve this answer

The latter. The generic argument avoids explicit casts, and helps you maintain type-safety. However, String is not Iterable.

share|improve this answer

String is not iterable? If you want to iterate over the characters you need to do something like this:

String my = "Which form shall I use?";
for(char c : my.toCharArray())
    System.out.println(c);
share|improve this answer
true, the char array is iterable, but not the string itself (a string has-a char array, but it isn't one) – Sean Patrick Floyd Jun 10 '10 at 13:25

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.