충분히 쌓여가는
문자열 비교 equals() 본문
문자열 비교
문자열을 비교할 때는, 비교 연산자 == 대신 equals()라는 메서드를 사용해야 한다
비교 연산자는 두 문자열이 완전히 같은지 비교
equals()는 문자열 내용이 같은지만 비교
==와 equals()의 결과가 같게 나올때
public class practice {
public static void main(String[] args) {
String str1 = "abc";
String str2 = "abc";
System.out.println(str1 == str2); // true
System.out.println(str1.equals(str2)); // true
}
}
==와 equals()의 결과가 다르게 나올때
둘 다 결과가 같게 나오기 위해 equals()를 사용해야함
public class practice {
public static void main(String[] args) {
String str1 = new String("abc");
String str2 = new String("abc");
System.out.println(str1 == str2); // false
System.out.println(str1.equals(str2)); // true
}
}
'Java > JAVA1' 카테고리의 다른 글
복합 대입 연산자 += (0) | 2023.05.17 |
---|---|
조건 연산자 ? : (0) | 2023.05.17 |
비교 연산자 < > <= >= == != (0) | 2023.05.16 |
나머지 연산자 % (0) | 2023.05.16 |
반올림, Math.round() (0) | 2023.05.16 |