[Java Concurrency] 01: Thread & Process
What is a thread? Thread is the smallest execution unit that can be schedule by the operating system. A process is a running program. When you start a program, you create a process.In one process, there can be more than one thread. Threads in a process share an environment created by the process. System vs … Read more