Skip to content

Commit a835dd5

Browse files
committed
codeTest
1 parent 419384e commit a835dd5

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

JavaStudy/src/com/.DS_Store

6 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.codeTest;
2+
3+
public class MaxAlphabet {
4+
}

JavaStudy/src/com/pattern/.DS_Store

6 KB
Binary file not shown.

JavaStudy/src/com/pattern/ch19_flyweight/Main.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ public static void main(String[] args) {
2424

2525

2626
///////////////////////////////////////////
27-
String s1 = "hello";
27+
28+
/*String s1 = "hello";
2829
System.out.println(s1.hashCode());
2930
String s2 = "hello";
3031
System.out.println(s2.hashCode());
@@ -34,7 +35,7 @@ public static void main(String[] args) {
3435
String s4 = "hi";
3536
String s5 = s4.intern();
3637
System.out.println(s4.hashCode());
37-
System.out.println(s5.hashCode());
38+
System.out.println(s5.hashCode());*/
3839

3940
}
4041
}

0 commit comments

Comments
 (0)