Start()
: Eager Thread Creationstart()
: Eager Thread Creation (Binding Form)
create()
: Lazy Thread Creation (Binding Form)create
(f_1, a_1, ..., a_n) Specification: Binds t to a thread returning f(a_1, ..., a_n). This binding overrides any previous binding of t.
Implementation: The thread is not yet activated but is put into the lazy stack.
Note: This operation is more efficient than the otherwise equivalent form
t=
Threadn<R, A_1, ..., A_n>::Create
(f_1, a_1, ..., a_n)