Binding (computer science)
From Wikipedia, the free encyclopedia
Categories: All articles with unsourced statements | Articles with unsourced statements since November 2007 | Programming language implementation | User interface techniques
|
In computer science, binding is the creation of a simple reference to something that is larger and more complicated and used frequently. The simple reference can be used instead of having to repeat the larger thing. A binding is such a reference.[citation needed]
Types of bindingThe following are commonly referred to as bindings. Language or Name bindingThe terms language binding and name binding refer to both the linking of libraries to application programs, and to the way symbols (variable names) are handled by compilers. In programming languages, these terms mean the references of an identifier to a value. In this context, binding is the act of associating a name or symbol with a machine address, and this association may occur either at compile time, in which case it is called 'static linking', or it may occur dynamically at runtime, which is called 'dynamic linking'. The terms binding and linking are used interchangeably in some contexts. Static binding has an additional characteristic: it prevents libraries from being updated (recompiled) independently of applications. XML data bindingCommand bindingCommand bindings, commonly referred to as keyboard macros, or simply macros, are frequently built into professional quality computer applications. In many of these, bindings can be modified or added, but usually can not be removed (i.e., the keystroke combination cannot be unassociated from the function with which it is associated). As an example of a command binding, most applications on Mac OS bind the "Save" menu item to the Command-S keyboard shortcut, so that Command-S can be used to save a document instead of having to navigate to that menu item each time. The Emacs text editor binds the "save-buffers-kill-emacs" command to the Control-X Control-C keystrokes in sequence, so that the user does not have to type "save-buffers-kill-emacs" whenever he/she wants to save and quit. Some computer applications, such as Microsoft Excel, allow the user to create a macro to do several common operations in sequence, and then bind a simple command to that macro to activate it.
See also |


