Talk:Iterator
From CSSEMediaWiki
(Difference between revisions)
Line 3: | Line 3: | ||
myIterator.remove(); | myIterator.remove(); | ||
} | } | ||
− | Maybe there is a special way of using the " | + | Maybe there is a special way of using the "greater as" to find out if two Strings are equal in Java that I am not aware of, but it would make more sense to me to do it like that: |
if(name.equals(lastName)){ | if(name.equals(lastName)){ | ||
myIterator.remove(); | myIterator.remove(); | ||
} | } |
Revision as of 23:34, 6 October 2008
I am just wondering why is there a ">" in the if-statement between name and lastName.
if(name > lastName){ myIterator.remove(); }
Maybe there is a special way of using the "greater as" to find out if two Strings are equal in Java that I am not aware of, but it would make more sense to me to do it like that:
if(name.equals(lastName)){ myIterator.remove(); }