Please, consider the following code:
public static void main(String[] args) {
String value="abc";
value="";
if(value==""){
System.out.println("blank "+value);
}
}
I do not understand why if(value=="")
is returning as false.