15. Concurrency in Java Flashcards
1
Q
Concurrency and Thread Introduction Quick Note
A
process, heap (its own memory space), thread (a unit of execution within a process), each process can have multiple threads, the main thread, the JavaFX application thread, each thread created by a process shares the process’s memory and files (can create problems), thread stack (memory for that thread only), heap vs. thread stack, the code within each main thread executes in a linear fashion, concurrency (an application doing more than one thing at a time)