zoukankan      html  css  js  c++  java
  • DLL学习笔记

    Dynamic-Link Libraries
    1. resource(no code)
    2. executable

    Although a dynamic-link library module can have any extension (such as .EXE or .FON), the standard extension is .DLL. Only dynamic-link libraries with the extension .DLL will be loaded automatically by Windows. If the file has another extension, the program must explicitly load the module by using the LoadLibrary or LoadLibraryEx function.

    An object library is a file with the extension .LIB containing code that is added to your program's .EXE file in the process called static linking when you run the linker.

    An import library is a special form of an object library file. Like object libraries, import libraries have the extension .LIB and are used by the linker to resolve function calls in your source code. However, import libraries contain no code. Instead, they provide the linker with information necessary to set up relocation tables within the .EXE file for dynamic linking.

    Object libraries and import libraries are used only during program development. Dynamic-link libraries are used during run time.

  • 相关阅读:
    re.sub函数的深入了解
    xpath
    改变评分查询
    Boolean Query
    固定分数查询
    Unicode编码的原型
    java中基本类型占用字节数
    Java Socket网络编程的经典例子(转)
    (转)工厂模式
    (转)java垃圾回收机制
  • 原文地址:https://www.cnblogs.com/andy65007/p/1292144.html
Copyright © 2011-2022 走看看