출처: https://bumcrush.tistory.com/182 [맑음때때로 여름]
1
2
3
4
5
6
7
8
9
10
11
12
13
    String str1 = "hello";
    String str2 = "hell";
    
    str2 = str2 + "o";
    System.out.println(str2); // hello로 출력
    
    if (str1==str2) {
        System.out.println("같다");  // 같다고 인식하지 않음
    }
    
    if (str1.equals(str2)) {
        System.out.println("같습니다"); // 같다고 인식함
    }
cs

+ Recent posts