Saturday 3 November 2018

java - Comparing two identical strings with == returns false

I am making an archive for my family. There are no syntax errors, however whenever I type in "Maaz", it evaluates realName == "Maaz" to false and goes to the else statement.



import java.util.Scanner;

public class MainFamily {
public static void main (String [] args) {


System.out.println("Enter you're name here");
Scanner name = new Scanner(System.in);//Scanner variable = name

String realName;
realName = name.nextLine();//String variable = user input
System.out.println("Name: "+ realName);

if (realName == "Maaz") {


System.out.println("Name: Maaz");

} else {
System.out.println("This person is not in the database");
}
}
}

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...