Skip to content

Commit 1b374f8

Browse files
committed
no message
1 parent 3610f5c commit 1b374f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

notes/JavaArchitecture/01 Java 基础.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ public class Test {
592592
* 字符串比较应当用equals,可见String重写了equals
593593
*/
594594
System.out.println(s3 == s4); // false
595-
System.out.println(s3.equals(s4)); // true
595+
System.out.println(s3.equals(s4)); // true
596596
}
597597
}
598598
```

0 commit comments

Comments
 (0)