Skip to content

Commit a18edac

Browse files
committed
finish
1 parent 143ccd5 commit a18edac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

workspace/day20/src/map/HashMapTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ public static void main(String[] args) {
2222

2323
System.out.println(map.size()); //HashMap의 크기 (길이)
2424
System.out.println(map.keySet()); //key 값들만 따로 모아줌
25-
System.out.println(map.values());
25+
System.out.println(map.values()); //value값들만 따로 모아줌
26+
2627

2728

2829
}

0 commit comments

Comments
 (0)