+ 2
What is the output of thid code?
String a="1234"; String b=12+"34"; System.out.println (a==b);
2 Answers
+ 5
Can't you just run it and see? I wonder... /:
+ 1
Output: true
12+"34"="1234"
"1234"=="1234"
String a="1234"; String b=12+"34"; System.out.println (a==b);