Talk:Iterator

From CSSEMediaWiki
Revision as of 23:34, 6 October 2008 by Dominic Winkler (Talk | contribs)
Jump to: navigation, search

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 "great 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();
}
Personal tools