Jump to content

Language interoperability

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Mayadong7349 (talk | contribs) at 03:09, 27 April 2016 (The previous reference link is break.). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Language interoperability is the capability of two different programming languages to natively interact[how?] and operate on the same kind of data structures.

Some object oriented languages can do this thanks to the hosting virtual machine (e.g. .NET CLI compliant languages in the Common Language Runtime and JVM compliant languages in the Java Virtual Machine).[1]

In this case a language that runs in a VM can use an object created in different language in the same VM. The VM operates the required abstraction of the object representation that permits to call a method of a class defined in the second language.

In this one can reuse the libraries written in another language of the same VM: e.g. a program written in Groovy, Scala or Clojure can use any library written in Java.

See also

References

  1. ^ "Cross-Language Interoperability". Microsoft Developer Network (msdn.microsoft.com).