函数术语 interface/DLL 仅用于固定不同语言之间的参数类型?
Terminology for function interface/DLL used only to fix parameter types between different languages?
我有几个案例需要做一个接口库"dummy",这意味着只需要让一个用语言A编写的应用程序调用一个用语言B编写的库,为了修复数据类型和其他小细节,而不添加功能。
像这样:
语言 A 中的应用程序 => 接口库 => 语言 B 中的库。
例如,我有一个案例,其中 A 是 Visual Basic,B 是 C#,"interface library" 是用 Visual Basic 编写的。
另一种情况,A是LabView,B是C,"interface library"用C写的
我不记得在英文中是否有一个标准的名称来调用这样的接口库,我的意思是"shell library"或"dummy shell library"等。
欢迎任何建议,即使不是"standard"。
以下是一些用于在两种语言或 API 之间进行映射的术语
就我个人而言,我经常使用术语 胶水代码,维基百科将其定义为
...code that serves solely to "adapt" different parts
of code that would otherwise be incompatible. Glue code does not
contribute any functionality towards meeting program requirements.
Instead, it often appears in code that lets existing libraries or
programs interoperate,...
我有几个案例需要做一个接口库"dummy",这意味着只需要让一个用语言A编写的应用程序调用一个用语言B编写的库,为了修复数据类型和其他小细节,而不添加功能。 像这样:
语言 A 中的应用程序 => 接口库 => 语言 B 中的库。
例如,我有一个案例,其中 A 是 Visual Basic,B 是 C#,"interface library" 是用 Visual Basic 编写的。 另一种情况,A是LabView,B是C,"interface library"用C写的
我不记得在英文中是否有一个标准的名称来调用这样的接口库,我的意思是"shell library"或"dummy shell library"等。 欢迎任何建议,即使不是"standard"。
以下是一些用于在两种语言或 API 之间进行映射的术语
就我个人而言,我经常使用术语 胶水代码,维基百科将其定义为
...code that serves solely to "adapt" different parts of code that would otherwise be incompatible. Glue code does not contribute any functionality towards meeting program requirements. Instead, it often appears in code that lets existing libraries or programs interoperate,...