動態加載
Sign in to saveAlso known as Dynamic loading
mechanism by which a computer program can, at run time, load a library into memory, retrieve the addresses of functions and variables contained in the library, execute those functions or access those variables, and unload the library from memory
Article · 中文
動態裝載,别称动态加载(英語:Dynamic Loading)是一種程序運行機制,能讓計算機程序在運行時(而不是編譯時)裝載庫(或者其他二進制對象)到內存中,然後檢索庫中函數和變量的地址,并執行這些函數或訪問這些變量,且能在不需要時將庫從內存中卸載。動態裝載、靜態鏈接(static linking)與(dynamic linking)(注意區分動態裝載與動態鏈接的微妙差別)是複用其他軟件代碼的三種機制,不同於靜態鏈接和動態鏈接,這種機制允許計算機程序在沒有某些庫的情況下啟動,然後在運行的過程中發現可用的庫從而獲得額外的功能。
Abstract from DBpedia / Wikipedia · CC BY-SA