Question:
what is the DLL hell?
Rishvi Shah
2011-07-18 03:29:05 UTC
what is the DLL hell?
Four answers:
?
2011-07-18 03:41:35 UTC
Hello.....

As you asked about DLL Hell so i would like to suggest you that i don't know much about it but according to me DLL Hell is a term for the complications that arise when working with dynamic link libraries (DLLs) used with Microsoft Windows operating systems. i hope it would help you out.
2011-07-18 12:09:48 UTC
DLL hell is a metaphor for a real world situation when it comes to programming for Windows, managing Windowscomplications are: * - DLLs can be insttrictions (Windows 98) * - The lack of an enforced standard method for software installation. * -...
jai_sak
2011-07-18 11:52:28 UTC
Dynamic Link Libraries are used in windows, which is capable of storing modules. A piece of code must be in memory for execution. But as far as DLL is concerned, It need not be fetched to memory at initial phase. It can be brought into memory whenever it is required..



To get a clear view about this, Imagine your RAM(512 MB for example) with a program(size of 300 MB) loaded into it. Now just imagine the same program is split into 100 pieces (each one weighs around 3 MB). This piece is called DLL. Instead of loading the complete 300 MB code as in the first case, now we are required only to load the corresponding DLL which contains the code of demand.



Advantage of having DLLs



* need not to load a big code into memory.

* sharing of code is possible between many process.

* effective memory utilization.
?
2011-07-18 12:57:25 UTC
DLL files in order to load external libraries.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...