Jan 15, 2009

What are static and shared Library? Which is fast and why?

What are static and shared Library? Which is fast and why?

Static library is linked at compiler time, which is fast but the executable file is big.
Shared library is used at runtime dynamically, which is slow but executable file is small

No comments:

Post a Comment