Internet
Fact-checked

At EasyTechJunkie, we're committed to delivering accurate, trustworthy information. Our expert-authored content is rigorously fact-checked and sourced from credible authorities. Discover how we uphold the highest standards in providing you with reliable knowledge.

Learn more...

What Is a Glue Code?

Jessica Susan Reuter
Jessica Susan Reuter

Glue code is computer code that unites programs or software components that would not be compatible otherwise. This code usually does not serve a purpose such as computation or calculation, but serves exclusively as a proxy between two incompatible pieces of software. Object-oriented programming languages can be connected to scripting languages, two object-oriented languages can be connected together, or large pieces in the same language can be united by this code.

Although glue code can be used to transfer information between computer languages, it is not required to do so. Generally, it allows one piece of code to call functions in the other, or allows small data values to be passed between code blocks. Some code generators allow user-specified data structures to be passed between code modules, but not all of them do. Moving large pieces of data through the connecting code may not always be reliable.

Man holding computer
Man holding computer

Generated glue code, particularly when it connects distinct computer languages, often contains code pieces specific for each connected code module. For example, to connect C++ with Java, the generated code may include both a C++ file and a Java file. As long as no major changes are made to the structures of the connected code modules, the generated files do not need to be changed, but they may need to be updated over the course of development. Generated files such as these rarely need to be changed or maintained by a developer, and never by an end user.

Glue code can be used to connect code modules of any size, from small functions to large libraries. Depending on the amount of proxy code generated for this purpose, there may be a significant amount of code bloat and overhead, so connecting small pieces of code in this way may not always be ideal. When synchronizing calls to large libraries or merging large code repositories, on the other hand, a small amount of this type of code can be an invaluable way to bring functionality where it might otherwise be unavailable.

Extensible Markup Language (XML) data is sometimes mistaken for glue code, but the purpose of each is quite different. XML is a markup language, that is, it adds organizational and descriptive information to existing data for easier interpretation. Both can serve as a proxy to move information, but XML is static and far more limited in terms of the data it can transfer between code blocks. XML annotates and classifies data, while glue code allows for movement and manipulation of data.

Discuss this Article

Post your comments
Login:
Forgot password?
Register:
    • Man holding computer
      Man holding computer