Skip to content

Commit 518570a

Browse files
committed
lecture
1 parent b3d9887 commit 518570a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/io/concurrency/chapter11/exam12/CustomForkJoinPoolExample.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ public static void main(String[] args) {
1515
CustomRecursiveTask task = new CustomRecursiveTask(array, 0, array.length);
1616
long result = pool.invoke(task);
1717

18-
System.out.println("총 합계 " + result);
19-
System.out.println("풀의 수행 정보 " + pool);
18+
System.out.println("result = " + result);
19+
System.out.println("pool = " + pool);
20+
System.out.println("stealing = " + pool.getStealCount());
2021
}
2122
}

0 commit comments

Comments
 (0)