I need a Iterator<Character> from a String object. Is there any available function in Java that provides me this or do I have to code my own?
|
feedback
|
|
One option is to use Guava:
This produces an immutable list of characters that is backed by the given string (no copying involved). If you end up doing this yourself, though, I would recommend not exposing the implementation class for the
| |||||||||
feedback
|
|
It doesn't exist, but it's trivial to implement:
The implementation is probably as efficient as it gets. | |||
|
feedback
|
| |||||||||||||||
feedback
|
|
No direct way. Not difficult to code, though:
| |||
|
feedback
|
|
Short answer: No, you have to code it. Long answer: List and Set both have a method for obtaining an Iterator (there are a few other collection classes, but probably not what your looking for). The List and Set interfaces are a part of the Collections Framework which only allow for adding/removing/iterating Objects like Character or Integer (not primitives like char or int). There is a feature in Java 1.5 called auto-boxing that will hide this primitive to Object conversion but I don't recommend it and it won't provide what you want in this case. An alternative would be to wrap the String in a class of your own that
but that might be more work than it is worth. Here is a code snippet for doing what you want:
| |||||||||||
feedback
|
|
Stealing from somebody else in another answer, this is probably the best direct implementation (if you're not going to use guava).
| |||
|
feedback
|
|
Scratch that; Arrays.asList doesn't do what I seem to remember it doing. Edit 2: Seems like it last worked this way in 1.4 | |||||||||
feedback
|
|
The Iterator iterate over a collection or whatever implements it. String class does nost implement this interface. So there is no direct way. To iterate over a string you will have to first create a char array from it and then from this char array a Collection. | |||||||
feedback
|