+ 5
What threads share and what they have own seperate?
What threads share and what they have own seperate? ~system programming Example: Stack Heap Memory P. C
1 Resposta
+ 2
Threads share memory, meaning you can for example directly access the variables inside a thread. They live in the same process, therefore, closing the process results in removing all threads, unlike multiprocessing.