Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    1,928

    Re: do while loop terminating to early

    For Strings, you might also want to check out the equalsIgnoreCase() function.
  2. Replies
    3
    Views
    1,928

    Re: do while loop terminating to early

    Don't use == to compare Strings. Use the equals() method instead. The == operator determines whether two Objects are the same instance, the equals() method checks for semantic equality.
Results 1 to 2 of 2