0
What is the whole point of using threads in a program?
2 Respostas
+ 1
when you make big calculations or processing, the gui will freeze until that calculation is done.
we use threads so the calculations are done in the bckground and our gui will not freeze.
hence our program will be more eficient.
0
Thanx for the answer