Difference between revisions of "Threads and Executors"
Jump to navigation
Jump to search
implement
Line 1: | Line 1: | ||
=Threads= | =Threads= | ||
==class SimpleThreadFactory== | ==class SimpleThreadFactory== | ||
− | implement <code>Thread newThread(Runnable target)</code> | + | ===implement <code>Thread newThread(Runnable target)</code>=== |
Create and return a [https://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html#Thread-java.lang.Runnable- new thread with the target Runnable parameter] you are passed. | Create and return a [https://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html#Thread-java.lang.Runnable- new thread with the target Runnable parameter] you are passed. |
Revision as of 21:37, 24 September 2017
Contents
Threads
class SimpleThreadFactory
implement Thread newThread(Runnable target)
Create and return a new thread with the target Runnable parameter you are passed.
Do *NOT* start this thread.
Certainly, do *NOT* run this thread.
Do not pass Go. Do not collect $200.
To repeat: just create a new Thread with the target Runnable and return it.
TAgeSum
implement int sumUpperLowerSplit(int[] ages, ThreadFactory threadFactory)