What is “overhead”?

前端 未结 12 1847
予麋鹿
予麋鹿 2020-12-12 09:24

I am a student in Computer Science and I am hearing the word \"overhead\" a lot when it comes to programs and sorts. What does this mean exactly?

12条回答
  •  抹茶落季
    2020-12-12 09:43

    Think about the overhead as the time required to manage the threads and coordinate among them. It is a burden if the thread does not have enough task to do. In such a case the overhead cost over come the saved time through using threading and the code takes more time than the sequential one.

提交回复
热议问题