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.
|
|
In the latter form, the Iterator is strongly typed which is preferable |
|||
|
|
|
You should use generics when the API provides it. That is, the latter alternative is preferrable.
vs
(String does not implement |
|||
|
|
|
The latter. The generic argument avoids explicit casts, and helps you maintain type-safety. However, String is not Iterable. |
|||
|
|
|
String is not iterable? If you want to iterate over the characters you need to do something like this:
|
|||
|