InterviewSolution
| 1. |
What Is A Thread Leak? What Does It Mean In C#? |
|
Answer» Thread leak is when a application does not release references to a thread OBJECT properly. Due to this some Threads do not GET garbage collected and the number of UNUSED threads grow with time. Thread leak can OFTEN cause serious issues on a Java application since over a period of time too many threads will be created but not released and may cause APPLICATIONS to respond slow or hang. Thread leak is when a application does not release references to a thread object properly. Due to this some Threads do not get garbage collected and the number of unused threads grow with time. Thread leak can often cause serious issues on a Java application since over a period of time too many threads will be created but not released and may cause applications to respond slow or hang. |
|