What are the differences between a systems programming language and Application programming language?
|
|
|||||||||||||||
|
|
A few factors should IMO come into consideration
|
||||
|
|
|
As with a great many things in IT, the line is blurry. For example, C started its life as a systems programming language (and was used to implement Unix), but was and is used for applications development too. Having said that, there are clearly some languages better suited to systems programming than others (eg. C/C++ are better suited than COBOL/FORTRAN for systems programming). Likewise there are languages that are better suited to applications development and not systems programming eg. VB.NET. The language features that stand out from the examples above, are the low level features of the systems programming languages like C/C++ (eg. pointers, bit manipulation operators, etc). There is of course the old joke that C is a "Sea" level language (sitting somewhere between the assembly level and the "high" level). Warning: I'm coming at systems programming from the perspective of OS developer / OS tool developer. I think it is fair to say, notwithstanding the projects to develop OSes with Java (though I believe mostly are native compiled, rather than to byte code and JIT'ed / interpreted), that systems programming languages target native machine code of their target platforms. So languages that primarily target managed code / interpreted code are less likely to be used for systems programming. Anyway, that is surely enough to stir up some comments both in support and in opposition :) |
|||||||||
|
|
These are not exact concepts, but in essence, systems programming languages are suitable for writing operating systems (so they have low-level concepts such as pointers, integration with assembler, data types corresponding to memory and register organization), while the application programming languages are more suitable for writing applications, so they generally use higher-level concepts to represent the computation (such as OOP, closures, in-built complex datatypes and so on). |
|||
|
|
|
i don't think there is a final answer here anymore. perl and python come by default with almost every linux distro...both can inline C...both can do job control and other "low level" tasks...threading etc. any language with a good set of system call bindings and/or FFI should be as fundamentally system-aware as C or C++. the only languages i would discount as being systems languages are those that specifically address another platform (jvm, clr) and actively seek to prevent native interaction |
|||
|
|
|
In general, a systems programming language is lower level than applications programming languages. However, the language itself has nothing to do with it.. it's more the particulars of the implementation of the language. For example, Pascal started life as a teaching language, and was pretty much strictly applications.. however, it was evolved into a systems language and was used to create early versions of MacOS and Windows. C# is not, typically a systems language because it cannot do low-level work, although even that line is blurred as managed operating systems come into being. |
|||
|
|
