Dynamically Linked Library - определение. Что такое Dynamically Linked Library
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое Dynamically Linked Library - определение

MICROSOFT'S IMPLEMENTATION OF THE SHARED LIBRARY CONCEPT IN WINDOWS AND OS/2
Dynamically linked library; Dynamic link library; .dll; Dynamically Linked Library; Dll files; Dynamic-Link Libraries; Declspec; Dllimport; Dllexport; Dynamic-Link Library; Dynamic Link Library; Dynamic Link Libraries; Microsoft Dynamic Link Library; Dynamic-link libraries; DLL file; DLL spoofing; DLL hijacking; .drv; Dynamically linked; RUNDLL.EXE; RUNDLL32.EXE; Rundll32.exe; Rundll.exe; Rundll; RUNDLL; RUNDLL32; Rundll32
Найдено результатов: 2073
Dynamically Linked Library         
<library> (DLL) A library which is linked to {application programs} when they are loaded or run rather than as the final phase of compilation. This means that the same block of library code can be shared between several tasks rather than each task containing copies of the routines it uses. The executable is compiled with a library of "stubs" which allow link errors to be detected at compile-time. Then, at {run time}, either the system loader or the task's entry code must arrange for library calls to be patched with the addresses of the real shared library routines, possibly via a jump table. The alternative is to make library calls part of the operating system kernel and enter them via some kind of trap instruction. This is generally less efficient than an ordinary subroutine call. It is important to ensure that the version of a dynamically linked library is compatible with what the executable expects. Examples of operating systems using dynamic linking are SunOS (.so - shared object files), Microsoft Windows (.dll) and RISC OS on the Acorn Archimedes (relocatable modules). (1995-12-12)
dynamic link library         
Dynamic-link library         
Dynamic-link library (DLL) is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems. These libraries usually have the file extension DLL, OCX (for libraries containing ActiveX controls), or DRV (for legacy system drivers).
Static library         
SET OF ROUTINES, EXTERNAL FUNCTIONS AND VARIABLES IN COMPUTER SCIENCE
Statically linked library; Static libraries; Statically Linked Library; Static Library; Static linking; .a; .lib; Static archive; Static binary; Static executable; Static compilation
In computer science, a static library or statically-linked library is a set of routines, external functions and variables which are resolved in a caller at compile-time and copied into a target application by a compiler, linker, or binder, producing an object file and a stand-alone executable. This executable and the process of compiling it are both known as a static build of the program.
The Linked Ring         
  • J.B.B. Wellington]]
ASSOCIATION OF ENGLISH PHOTOGRAPHERS
Linked Ring; Brotherhood of the Linked Ring; Linked Ring Brotherhood
The Linked Ring (also known as "The Brotherhood of the Linked Ring") was a British photographic society created to propose and defend that photography was just as much an art as it was a science, motivated to propelling photography further into the fine art world. Members dedicated to the craft looked for new techniques that would cause the less knowledgeable to steer away, persuading photographers and enthusiasts to experiment with chemical processes, printing techniques and new styles.
X-linked dominant inheritance         
MODE OF INHERITANCE
X-linked dominance; X-linked dominant
X-linked dominant inheritance, sometimes referred to as X-linked dominance, is a mode of genetic inheritance by which a dominant gene is carried on the X chromosome. As an inheritance pattern, it is less common than the X-linked recessive type.
Library linked data         
THE USE OF LINKED DATA BY LIBRARIES
Library linked data (LLD) is the use of linked data standards by libraries. These standards are usually applied to bibliographic and authority data sets with the hope of decreasing redundant cataloging work; and increasing visibility of library resources and interoperability with non-library systems.
X-linked intellectual disability         
SYNDROMIC INTELLECTUAL CHARACTERIZED BY AN X-LINKED INHERITANCE PATTERN
X-Linked mental retardation; X-linked mental retardation
X-linked intellectual disability refers to medical disorders associated with X-linked recessive inheritance that result in intellectual disability.
Subscription library         
  • Atwater Library of the Mechanics Institute of Montreal
  •  [[Circulating library]] and stationery shop, [[Gulgong]], Australia, 1870
  • The [[British Museum]] was established in 1751 and had a library containing over 50,000 books.
LIBRARY THAT REQUIRES PAYMENT TO BECOME A MEMBER
Membership Libraries; Subscription libraries; Independent library; Community libraries; Proprietary library; Commercial circulating library; Social libraries; Social library; Membership library
A subscription library (also membership library or independent library) is a library that is financed by private funds either from membership fees or endowments. Unlike a public library, access is often restricted to members, but access rights can also be given to non-members, such as students.
class library         
  • A woman working next to a filing cabinet containing the subroutine library on reels of punched tape for the EDSAC computer.
COLLECTION OF NON-VOLATILE RESOURCES USED BY COMPUTER PROGRAMS, OFTEN FOR SOFTWARE DEVELOPMENT
Library linking; Shared library; Library Linking (Computer Science); Code library; Software library; Software libraries; Library (software); Programming library; Library routine; Shared object; Shared libraries; Subroutine library; Program library; Program libraries; Native library; Shared Library; System library; Class library; Application program library; Computer library; Function library; Library (computer science); Object library; Software libary; Programmer libraries; Software Library; Code generation library; Code generation libraries; Shared library form; Code package; Programming libraries; Reusable library; Stub in Linux; Software dependency; Library function; .dylib; Shared lib; Smart linking; Smart linker
<programming> A library of reusable classes for use with an object-oriented programming system. (1994-12-05)

Википедия

Dynamic-link library

Dynamic-link library (DLL) is Microsoft's implementation of the shared library concept in the Microsoft Windows and OS/2 operating systems. These libraries usually have the file extension DLL, OCX (for libraries containing ActiveX controls), or DRV (for legacy system drivers). The file formats for DLLs are the same as for Windows EXE files – that is, Portable Executable (PE) for 32-bit and 64-bit Windows, and New Executable (NE) for 16-bit Windows. As with EXEs, DLLs can contain code, data, and resources, in any combination.

Data files with the same file format as a DLL, but with different file extensions and possibly containing only resource sections, can be called resource DLLs. Examples of such DLLs include icon libraries, sometimes having the extension ICL, and font files, having the extensions FON and FOT.