The D Programming Language: Does it have a future?
Written on , by Andrew Lalis.
The Potential
Because it was designed many years after the advent of most of the main programming languages that form the backbone of our software (C, C++, Java, Python, etc.), D has the benefit of 20/20 hindsight that it uses to improve over some quite glaring flaws in earlier languages.
From our past, we've learned a few key things which contribute to great languages:
- Expressiveness: it should be very easy to express complex structures and processes.
- Abstraction: programmers should be able to create abstractions without significant extra cost.
- Ease of use: it should be really easy for new programmers to get started, and for pros to do things quickly.
- Performance: programs written in the language should be reasonably efficient and fast.
Of the other languages I've mentioned, each of those easily achieves a few of these requirements: C++ is expressive and allows efficient abstraction, and it's very fast. However, it's generally accepted that the learning C++ is quite difficult. Again, Python can arguably meet the first three requirements, but fails to provide satisfactory performance for many applications.
I think that D is a language which addresses all of these requirements in a modest, satisfactory approach.
- D allows the same level of expressiveness as C++, while offering the convenience of Java when you don't want that.
- Abstraction in D is as simple as in Java.
- D is relatively easy to learn, because of its simple module structure and automatic memory management by default.
- Because D compiles to machine code, it is inherently open to all sorts of optimizations from LLVM and GCC compiler backends, earning it very good performance that's faster than Java but just shy of C++ in most cases.
Of course, I could list all of the language features here which allow D to excel in each of the basic requirements, but in short, it offers all of the power of a low-level systems language like C++, while at the same time offering the convenience of high-level languages like automatic memory management, and metaprogramming. So, I think that D is somewhat unique in that it gives programmers a freedom to choose their own preferred style; it's a language accomplishes as much as a family of languages.
Why Isn't D Popular?
You'd think that all these benefits, developers would be flocking in droves to D. But clearly in the real world, that's not the case. Why? This section outlines some of the reasons why the language hasn't attained the same level of popularity as others.
Late to the Party
Despite their modern-day popularity, all of the major programming languages are several decades old: Java was created in 1995, Python in 1991, C++ in 1985, and so on. D was first conceived in 2001, giving all of these other languages years to build a loyal following. Additionally, the early version of D was highly volatile and suffered from having two competing implementations of a standard library. In 2007, D2 was released for the first time, marking the "stabilization" of D, and the language has essentially grown from there. So we're dealing with a relatively immature language as of yet, which still needs to prove its worthiness in various disciplines before it gains popularity.
Paradoxical Loneliness
One fatal issue which affects many software projects is this: the project receives little attention from new users, so it is not promoted to new users. Therefore, the project yet again receives little attention from its limited userbase, and so on... D is no exception. Other popular languages were quickly adopted by large corporations: Java by Oracle, C++ by Microsoft, Python by Google, etc. Now we're in a situation where most large employers will choose a "tried and true" programming language that's been used by other corporations, and thus less popular languages stay in the shadows. Since D isn't so radically different than other languages but instead offers smaller meaningful, incremental improvements, it's also not the most flashy new language for individual developers to rave about in the free time.
A New Ecosystem
Stemming from the other reasons mentioned above, because D is relatively new, its software ecosystem is still growing, and lacks some of the mature, standard libraries we've come to expect from a general-purpose programming language: a standard async library, an HTTP client, a standard GUI framework, and the list goes on. Over time, these problems are usually solved by the community, so I believe that D will emerge with a robust library of modules that rivals the Java and C++ ecosystems.