Runtime Locatable Code
I have read Runti开发者_开发问答me Locatable code in a discussion forum, Actually what is that rumtime locatable code mean?
There are a number of possibilities for what they're referring to, but what strikes me as most likely is actually called Relocatable code: http://en.wikipedia.org/wiki/Relocation_(computer_science)
relocation is the process of replacing symbolic references or names of libraries with actual usable addresses in memory before running a program. It is typically done by the linker during compilation (at compile time), although it can be done at runtime by a relocating loader.
精彩评论