What are the negative consequences of unused includes?
I'm aware they result in increased binary size (or do they?), anything else?
|
What are the negative consequences of unused includes? I'm aware they result in increased binary size (or do they?), anything else? |
|||||||||
|
|
|||||||||||||||||
|
|
main problem is clutter. These are the three main aspects in which the clutter manifests: Visual pollution; while you are trying to figure other includes that you do need. Logical pollution; it is more likely to have collision of functions, more time to compile (it might be really small for a couple of includes, but if it becomes a "policy" to not cleaning up unneeded includes, it might become a significant hurdle) dependency opacity; since there are more headers to analyse is it harder to determine the dependency cycles in your code. Knowing what are the dependencies in your code is crucial when your codebase grows to any significant level beyond the hobbyist level |
|||
|
|
|
Generally speaking, yes, it does cause some problems. Logically speaking, if you don't need it then don't include it.
|
|||
|
|
|
I'll assume the headers can all be considered as "sincere", that is, are not precisely written with the aim of sabotaging your code.
|
|||
|
|
|
Whether or not they increase the binary size really depends on what's in them. The main side-effect is probably the negative impact on compilation speed. Again, how big an impact depends on what's in them, how much and whether they include other headers. |
|||
|
|
|
Well for one leaving them there only prolong the compile time and adds unnecessary compilation dependencies. |
|||
|
|
|
They represent clumsy design. If you are not sure what to include and what not to include, it shows the developer had no idea what he was doing. Include files are meant to be included only when the are need. It may not be that much of issue as the computer memory and speed is growing by leaps and bounds these days but it was once perhaps. If an include is not needed but included anyhow, I would recommend to put a comment next to it saying why you included it. If a new developers get on to your code, he will have much appreciation for you, if you have done it the right way. |
|||
|
|
|
include means you are adding some more declarations. So when you are writing your own global function, you need to be carefull wheather that function is already declaerd in the header included. Ex. if you write your own class auto_ptr{} without including "memory", it will work fine. but whenever you will include memory, compiler gives error as it already has been declared in memory header file |
|||||||||
|
|
Yes, they can increase binary size because of extern unused variables.
|
|||
|
|