forked from TiwariMithilesh/anish74859-1584
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStringCompare.java
More file actions
19 lines (15 loc) · 735 Bytes
/
StringCompare.java
File metadata and controls
19 lines (15 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package strings;
import java.util.Objects;
public class StringCompare {
public static void main(String[] args) {
String str1 = "Hello";
String str2 = "World";
String str3 = "hello";
String str4 = new String("Hello");
System.out.println("Comparing " + str1 + " and " + str2 + " : " + str1.equals(str2)); // false
System.out.println("Comparing " + str1 + " and " + str3 + " : " + str1.equalsIgnoreCase(str3)); // true
System.out.println("Comparing " + str1 + " and " + str4 + " : " + Objects.equals(str1, str4)); // true
System.out.println("Comparing " + str1 + " and " + str4 + " : " + str1.compareTo(str4)); // 0
System.out.println("Comparing " + str1 + " and " + str4 + " : " + (str1 == str4)); // false
}
}