Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Why it is not coming out of while loop, when 'a' = 'b'?

  1. #1
    Junior Member
    Join Date
    Feb 2024
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Why it is not coming out of while loop, when 'a' = 'b'?

    public class App {
    public static void main(String[] args) throws Exception {
    String a = "";
    String b = "Stop";
    int i = 1;

    while (a!=b) {
    System.out.println("Its running");
    a = a+(b.charAt(i-1));
    i++;
    }
    }
    }

  2. #2
    Junior Member
    Join Date
    Feb 2024
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Why it is not coming out of while loop, when 'a' = 'b'?

    In Java, when comparing strings with != or == operators, you're actually comparing references, not the content of the strings themselves. Even if the content of a and b is the same, the references may not be equal, which is why your loop doesn't terminate when a becomes equal to b.

    To compare the content of strings, you should use the equals() method. while (!a.equals(b))

Similar Threads

  1. [SOLVED] Why is my value coming out to be false ???
    By smartshahezad in forum What's Wrong With My Code?
    Replies: 0
    Last Post: July 12th, 2014, 09:35 PM
  2. The end of JAVA is coming
    By hasan2222 in forum The Cafe
    Replies: 1
    Last Post: September 4th, 2013, 12:31 AM
  3. Not sure where the error is coming from
    By Duke_fann in forum What's Wrong With My Code?
    Replies: 6
    Last Post: November 23rd, 2011, 04:21 AM
  4. Null value coming from Database
    By kosuri.dilip in forum What's Wrong With My Code?
    Replies: 0
    Last Post: March 1st, 2011, 03:03 PM
  5. JFrames not coming up?
    By scooty199 in forum AWT / Java Swing
    Replies: 13
    Last Post: October 30th, 2010, 02:54 AM