什么是系统软件最好的编程语言?如果他们中的许多人使用..如何将它们整合到单个程序中?

人气:784 发布:2022-09-22 标签: php perl java c

问题描述

什么是制作系统软件的最佳编程语言???? 如果使用了很多软件语言,,,我们如何将它们集成到一个编程中?

what is actually the best programming language for making system software ???? and if many of the software languages used,,,how we integrate them in a single programming??

推荐答案

C和汇编程序通常是最佳语言。但是,某些系统具有针对特定语言设计的硬件,因此您别无选择,只能使用指定的语言。有些语言易于集成,因为它们共享一种通用的目标代码格式(C,C ++,ASM),而其他语言则更难集成,C#,VB.NET,Java等。 C and Assembler are generally the optimal languages. However, some systems have hardware that is designed for a specific language, so you have no choice but to use the one that is specified. Some languages are easy to integrate because they share a common object code format (C, C++, ASM), while others are more difficult to integrate, C#, VB.NET, Java etc.

546