Difference between load-time and run-time dynamic linking

前端 未结 3 449
长情又很酷
长情又很酷 2020-12-16 04:07

What is the difference between Load-time dynamic linking and Run-time dynamic linking?

3条回答
  •  暖寄归人
    2020-12-16 04:56

    You forgot the "homework" tag.

    Load-time linking means that the DLL you're linking to is loaded when your application starts, regardless of whether or not you actually use the functionality in that DLL. Dynamic linking means that the functionality of the DLL is only loaded when it's actually needed.

提交回复
热议问题