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?
相关问题
- Does boost::bind cause overhead?
- In CUDA profiler nvvp, what does the “Shared/Globa
- Java Proxy Discovering Bot
- What exactly do pointers store? (C++)
- Overhead for Golang's logger if set to discard
相关文章
- What exactly do pointers store? (C++)
- Overhead for Golang's logger if set to discard
- Terrible performance - a simple issue of overhead,
- OpenMP drastic slowdown for specific thread number
- Sql wildcard: performance overhead?
- C++ Non-static member functions overhead
- What is the memory overhead of an object in Java?
- Time measuring overhead in Java
The meaning of the word can differ a lot with context. In general, it's resources (most often memory and CPU time) that are used, which do not contribute directly to the intended result, but are required by the technology or method that is being used. Examples:
You could use a dictionary. The definition is the same. But to save you time, Overhead is work required to do the productive work. For instance, an algorithm runs and does useful work, but requires memory to do its work. This memory allocation takes time, and is not directly related to the work being done, therefore is overhead.
You can check Wikipedia. But mainly when more actions or resources are used. Like if you are familiar with .NET there you can have value types and reference types. Reference types have memory overhead as they require more memory than value types.
its anything other than the data itself, ie tcp flags, headers, crc, fcs etc..
You're tired and cant do any more work. You eat food. The energy spent looking for food, getting it and actually eating it consumes energy and is overhead!
Overhead is something wasted in order to accomplish a task. The goal is to make overhead very very small.
In computer science lets say you want to print a number, thats your task. But storing the number, the setting up the display to print it and calling routines to print it, then accessing the number from variable are all overhead.