Threads and Executors
Contents
Threads
class SimpleThreadFactory
implement Thread newThread(Runnable target)
Create and return a new thread with the Runnable parameter you are passed.
Do *NOT* start this thread.
Certainly, do *NOT* https://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html#run-- run] this thread.
Do not pass go. Do not collect $200.
TAgeSum
implement int sumUpperLowerSplit(int[] ages, ThreadFactory threadFactory)