vote up 41 vote down star
19

I stumbled several times over D and really asked myself why it isn't more popular.

D is a systems programming language. Its focus is on combining the power and high performance of C and C++ with the programmer productivity of modern languages like Ruby and Python. Special attention is given to the needs of quality assurance, documentation, management, portability and reliability.

Do you think it has got a future? I really would like to try it but somehow the thought that I'm the only person on earth programming D discourages me to try it.

flag

Thats for picking my answer :) – Rayne Oct 30 '08 at 16:03
To quote Pulp Fiction: "Z's dead baby". Today is all about "D"! ;-) – Seventh Element Jan 28 at 23:40
It takes ten years for any language to become popular, C++, Ruby, Perl, PHP. All of them. D is just over 12 months old. – Max Howell Apr 8 at 23:20
@Max, D has been around since 2001, at least. – Kevin Jun 16 at 22:08

24 Answers

vote up 34 vote down check

DO it! D is one of my favorite programming languages. It's not just a systems programming language, it's used for the same things C++ is used for, EVERYTHING. There is also an alternative standard library for general purpose usage which I think you would like unless you're really attached to C/C++, then the standard library would probably be better for you. I have been using D for over a year now. It has a very vibrant community, everyones really nice and helpful! There are new projects being made for and with the D language everyday! I'd give it a try :).

link|flag
1  
Thanks, great to hear someone being enthusiastic about D :)! I think I'll really try it after all. – crackpod Oct 30 '08 at 15:15
1  
s/EVERTHING/EVERYTHING/ – J.F. Sebastian Jan 11 at 1:25
I appreciate all the edits to correct things I screwed up. I was apparently very tired or something equally nasty when I wrote this. Sorry. – Rayne Aug 30 at 11:41
vote up 23 vote down

I really would like to try it but somehow the thought that I'm the only person on earth programming D discourages me to try it.

Check out the D newsgroups at news.digitalmars.com, and you'll find a large and thriving community of D programmers.

For instructions on how to set up a news reader, see http://www.digitalmars.com/NewsGroup.html or the web interface.

link|flag
5  
No vested interests here :o) – Motti Dec 7 '08 at 20:15
vote up 22 vote down

I wonder...

I stumbled once or twice on web tutorials for D, and, as a C++ developer, I was not impressed.

Not because D lack qualities.

It's just that, as far as I am concerned, learning a language takes time, and I would rather use this time learning different languages.

For me, D, like Objective-C, are either:

  1. too much similar to C++ when compared to other languages like Ruby, Python, Perl, Lisp, or even JavaScript, i.e., unlike those language, I believe D won't change a lot my way of thinking. So there's no way I will invest personal time in it.
  2. being less interesting than Java or C# when I'm just drooling over their huge standard libraries, i.e., unlike those languages, I believe D won't add a lot to what C++ is able to do.
  3. I never (i.e. never as in never) saw a job offering near my home where D (unlike Objective-C) was mentioned

And I did not even mention the fact that C++ is huge as a language, and that I am still learning each day new uses of C++ features.

In the end, I guess C++'s shadow hides somewhat D, and thus limits the growth of D's community, which is perhaps a shame. Or perhaps not. I don't know. Without a strong incentive, I just don't see the point to investigate.

Note this is not saying D is a bad language. Quite the contrary. Just giving a personal opinion of why I won't try D, an opinion that could be shared by other people.

Thus, I guess this can be some valuable additional info to the "Does the D programming language have a future?" discussion.

Edit

Note that I stumbled on D's page on Wikipedia, and was positively impressed by its features... But it doesn't change what I said above

Edit 2

Whoa... If someone like Andrei Alexandrescu wrote an article on D, then I am probably wrong to ignore it:

http://www.ddj.com/go-parallel/article/showArticle.jhtml?articleID=217801225

link|flag
1: No, because I won't have the time necessary to try D. 2: I'm open to proofs, if you care to give some. 3: Yes, it is about jobs, because unless the language is stellar, you won't have a community without jobs... Again, I'm not saying D is a bad language [...] – paercebal Nov 30 '08 at 20:48
[...] It's just that, well, D is quite far in the back of my list of "must learn" languages for the reasons I gave above. That, and the fact no one around me heard about it, and that I stumbled on it by accident. – paercebal Nov 30 '08 at 20:51
1  
I think it might be a good thing for D to remain in C++'s shadow, for a while anyway. That way the community can grow outside of the limelight. – Brad Gilbert Dec 10 '08 at 1:03
Yes but you seem to miss out on the fact that C++ is a god-awful disaster of a language! steve.yegge.googlepages.com/tour-de-babel yosefk.com/c++fqa – kronoz Dec 10 '08 at 9:16
2  
"FQA-Lite" is a bad joke turned sour. The guy's arguments could have been interesting if they were not biased by his too-much-apparent hate. Sorry, but for me, anyone quoting FQA-Lite is by default ruining any chance of being considered seriously. – paercebal Dec 11 '08 at 20:57
show 8 more comments
vote up 13 vote down

Honestly, no. I think it's going to stay a niche language. The needs its trying to meet are already met.

link|flag
I agree with Rayne, they aren't provided yet. – The Wicked Flea Oct 30 '08 at 15:57
1) Niche languages live to fill a need that isn't being met. Its more just obscure than niche. 2) @Rayne: Why? – Greg Rogers Oct 30 '08 at 17:15
Right now, C and C++ are the systems programming languages. They do what needs to be done. I've worked on kernel-level development in C++. I wasn't sitting there saying, "crap, my language is terrible". What need does D fill for that level that C++ doesn't? (also, have you ever written OS code?) – Paul Nathan Oct 31 '08 at 18:57
quoth the OP, "D is a systems programming language" – Paul Nathan Nov 3 '08 at 2:38
9  
Some things that D has that C++ does not: inline assembler, immutable data structures, modules, compile time function evaluation, mixins, delegates, closures, automatic memory management, template constraints, fast compilation turnaround, export that works, unit testing, doc generation, etc. – Walter Bright Nov 5 '08 at 9:11
show 9 more comments
vote up 10 vote down

I certainly think it has a future, otherwise I wouldn't have spent as much time on it as I have, including being part of the project lead of Tango (close to 100 contributors) for more than 2 years and co-authoring the book "Learn to Tango with D". Also the 40 people at the Tango conference in Poland last September suggests that you won't be alone as a user.

link|flag
You can only tango with Django :) – Andrei Taranchenko Feb 23 at 3:33
Well, next version of Dsource will supposedly use Django ;) – larsivi Mar 4 at 16:11
vote up 9 vote down

No, I don't think it has a future. There's no doubt it's better designed than C++, but it doesn't really stand out enough to ever get mainstream acceptance. The world just doesn't need a cleaned-up C++. For most purposes, other languages are better suited (Python, Ruby, C#, Java), and for the areas where C/C++ still dominates, they're likely to keep doing so. Switching to a new language isn't a small task on most projects, and will only be done if the rewards are really worth it. And even if D is a nicer language than C++, it lacks in library/tool support.

I don't see D ever breaking through, for the same reason that we're still using x86 and a million other messy, badly-designed technologies. Because they're here already, they're widespread and well-supported, and the advantages of switching to something better designed just aren't big enough to justify the initial cost.

link|flag
I think python and ruby took 10 years to become mainstream – hasen j Jan 11 at 2:10
But Python and Ruby were, and are, trying to fill niches that weren't already settled. There wasn't a Grand Old Language in that area they had to displace. D on the other hand, is trying to squeeze into what's probably the oldest, and most conservative segment there is, displacing C/C++. – jalf Jan 11 at 18:03
@jalf: Uh, Perl was a pretty grand old language in the Python/Ruby niche. – dsimcha Jan 28 at 3:40
1  
Also, D is more than a cleaned up C++. Templates are much more powerful, and D2 (the alpha version) makes a serious attempt at addressing concurrency issues w/ transitive const and pure functions. – dsimcha Jan 28 at 3:59
dsimcha: Was it? I don't really think so. It was really big on Linux, but how prevalent was it on Windows? Or perhaps more to the point, in the "executable pseudocode" niche? Perl is not exactly pretty or easy to read. Which is exactly one of the biggest reasons for Python's success. – jalf Jan 28 at 13:42
show 3 more comments
vote up 8 vote down

I think the thing to keep in mind here is that languages like Ruby and Python started out the same way, as one-man projects with grassroots following. Without a huge corporate backing, D will only become popular through a grassroots movement of programmers, starting with hobby projects, non-production code, etc., just like Ruby and Python. I've been using D for about a year and love it. Remember, if you're interested in a language, but won't try it because you're worried it won't become mainstream, and enough other people think like you, it will become a self-fulfilling prophecy.

Edit: Another very important thing to keep in mind is that D is still a bleeding edge technology. IMHO, declaring a 1.0 version when it was declared was probably a mistake in hindsight, as it gives the wrong impression as to what the community is focusing on now. D2 makes several very fundamental changes to the language and, by seriously addressing concurrency issues, increases the justification to undergo the switching costs from C++. Most of the effort of the core D people is going into getting the core language of D2 right. Most community effort is going into getting the code to libraries, tools and alternative implementations written, and keeping up with changes to the core language. Polish, documentation, etc. will come after the dust settles on D2.

link|flag
Precisely my thoughts: if you want it to become mainstream, start using it. – Ellery Newcomer Nov 2 '08 at 1:33
vote up 7 vote down

You may also want to look at these questions:

D Programming Language in the real world?

How widespread is D here at SO?

Is anyone using D in commercial applications?

It seems to be popular enough on SO.

link|flag
vote up 6 vote down

A good (but not the best), but certainly not the most relevant, source which shows an increase of popularity of the D programming language is certainly TIOBE's index located at http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html . From a perspective of a professional C++/C developer (since 1992) - D is the best designed OO programming language with features that actually go beyond OO (see new "pure" functions for an example). Out-of-box D code is pretty fast. Shootout examples can give some clues about the speed: http://shootout.alioth.debian.org . But, software engineers know pretty well that it is not all about speed. Personally the power of D comes not just from speed, but also from it's PRACTICAL values (code coverage, design by contract, built-in unit testing, invariants, const correctness, scope keyword, built-in documentation system, etc).

To sum everything up in one, single sentence - D is a heaven for a software engineer.

link|flag
Common Lisp is heaven for a software engineer. Is D that good? – David Thornley Mar 6 at 17:10
vote up 6 vote down

Everybody speaks about projects and nobody about maintenance. I worked during 20 years supporting the programs which were maid by other people. The main problem of C++ is not even GC unavailibility but unreasonable quantity of features. Every programmer has it's own set of his favorite features and as everybody likes the music listened when he was 16, mostly we make programes as it was in our university times. But every professor has it's own views at subject matter. As a result I have seen C++ programs written in 2007 where all constants were defined in preprocessor. So for maintenance programs in C++ whith so many options we need in industry 1-st class personal but it is impossible espeсially for small and middle size companies. As contrasted to this D has only essential but allpurpouse, modern and actual set of features for pragmatic people. But D has future only when it will overcome some very critical difficulties. Main of them IMHO are:

D is not good name. We all are the pawns of ratings and mode (as we say in Russian). The ratings come from TIOBE and others. With simple one letter 'D' we have many confusion with it and it is very difficult to find adequate information in Internet. My proposition is DPL as "D programming language." If anybody thinks that the name is not important I can say only: "How you will name the ship so she will ride" And it is not too late to change the name.

We have to stop to use two libraries. Tango is more popular. It is a winner. Our leader must have not only good ideas. He must have responsibility before the community. It is quite inough to have one Carl Sassenrath with his REBOL. We have not to become a group of sectary . The decisions have to be accepted collegial. It's time to have a community body of 3-5 respect people. And we have to think about a standard for D.

We need our own GUI library written in D clear and modern. DWT is not a good chois for newcommers. Did you see the documentation? You have to go to JWT. And there you have to learn Eclipse. I want only to write a programe in D and don't want to analyse examples in Java because I don't know it and I don't want to know. May be it would be better to support this guy which alone makes DFL?

I am not a system programmer and I start to use D as a general pupose language. But in many blogs I can read compliants about debugger. But I thought that first of all D is a system programming language. And it must have a good, modern and effective debugger. Stop any other works and make this immediately!

As D consider to be a general purpose language it needs the real strings in syntax level. May be it is ony syntax sugar but int[char[ ]] x1 in hash arrays IMHO has too many brackets. And you can imagine how ugly it will look in multidimensional variant. Is int[string] x1 really not better? And when we have maid a first step and included string operations in language why not to make it in more clear manner?

We have to look at D as at technology. Therefore we need an interpreter which is near as D to use it in small quick lazy i.e. agile programming and as internet and glue language. And we have such one - MiniD from this young genius Mr. Jarrett Billingsley. Community have to support this project. Our leader Mr. Charles Bright have to give heartly approval to it.

Today we have already 128 bit processor but we don't have even 64 bit D compiler. May be it is such a strategy?

We need one big and successful project. Nothing helps so greatly as a good example.

May be somebody will not agree with me but every great language has it's mother company. Borland and Microsoft for C++, Sun and IBM for Java, ZOBE for Python. May be it is neccessary to find such one for D?

Another way to popularity is to work with university's community. Our leaders have to read lectures for students. D should be included in educational programs. Young people are our future. And for our publicity D have to take place in all benchmark tests (http://shootout.alioth.debian.org/) Last tests from 22 January 2009 were run without D. Why? May be because the processor was Intel Q6600.

So I beg my pardon for such a long answer and for my mistakes in English. D is realy nice but we have only 2-3 years to solve these problems. If our leaders and community will do it - D has future. If not - it will cast in lot with thousands of languages which are used only by small groups of fans.

link|flag
Sorry.!!! Naturally not Charles Bright but Walter Bright. – Maxgen Mar 1 at 13:16
vote up 4 vote down

You won't be alone; you will be in a minority for a while yet. My impression is that D has a lot of promise, but is too much in a state of flux for many people. Give it a few more years to stabilize, and it could become a contender.

link|flag
vote up 3 vote down

You aren't alone. I installed D, but haven't written anything in it (yet). And there are a number of questions here tagged "d", so there are users out there.

From what I've read, yes, I think it has a future. But it's going to take one programmer at a time to develop something in D before enough of us are out there to make it more mainstream.

link|flag
vote up 3 vote down

One problem it has is that there are a number of different programming languages called "D". The first one I heard of (and the one with the best reason for the name) was in the late 1980's (it optimized database access via a C-like syntax, hence "D")

link|flag
1908's?? Apparently D has quite a past as well as a future. :) – Steve Fallows Oct 30 '08 at 15:13
This is a entirely different D, www.digitalmars.com/d was only invented some 15 years ago. – Rayne Oct 30 '08 at 15:16
oops... Ya'know I had first typed it as "1890s" and then "fixed" it. But then you usually takes three tries to get my code right also... – James Curran Oct 30 '08 at 15:42
vote up 3 vote down

Depends on what you call "future". I don't believe any single-source language has ever survived over the years: tcl has been replaced with python/perl. There is a trend to replace python/perl with ruby code, etc. C/C++, FORTRAN, LISP, SCHEME -- all had many implementations and have survived many years.

The key to mainstream acceptance and continued support is the existence of multiple sources.

D currently has only one implementation -- and this makes it hard to rely on it being available on many platforms.

link|flag
Wrong. It has GDC and LDC in addition to DMD. Unfortunately, GDC is dead (or at least appears to be), but LDC is actively being maintained and is in beta testing. – dsimcha Jan 11 at 2:08
vote up 3 vote down

There are a lot of good ideas in D. But I wouldn't use it in the current incarnation. It doesn't really offer any compelling (besides something nice to have) over C/C++ for system programming and Java/Ocaml/Haskell/Erlang/Python/Ruby/Perl for application development.

I have a hunch that the next gen c/c++ successor will come from clang/llvm folks (sponsored mainly by Apple with cash position recently bigger than Microsoft BTW) (with killer features like fast/tight IDE integration, JIT/static code generation switchable), where many good ideas of D will be absorbed.

link|flag
Wow, this is a subjective question and I gave my (probably subjective) opinion. Some people just can't take it? I personally really like the language and the white paper by Walter. But we're talking about the subjective "future" rather than a specific "feature" here. – ididak Nov 5 '08 at 17:50
llvm/clang is going to improve considerably the toolchain. Being an important improvement over a language and probably the most lacking feature of D, is not going to make C++ any better. – Álvaro Jun 30 at 9:40
vote up 3 vote down

Glancing at the Wikipedia article, a few impressions:

The article looks like it was written by enthusiasts, so I rather question whether it has WP's Neutral Point of View.

It looks like it does some things better than C++ (which isn't really a hard goal), but it doesn't look to me like it does enough things better. Lots of people have worked on a better C++, and the only two candidates to succeed on a large scale have had massive corporate backing. There's now three languages in that niche: C++, Java, and C#. Squeezing another one in is not going to be easy.

The WP article said it didn't handle Unicode smoothly, which to me is a showstopper. I'm willing to forgive older languages for having problems with Unicode, but not newer ones.

I don't see why I'd want to learn D. I'm potentially interested in learning languages that are different from what I know, or lots better. D doesn't look like either. Moreover, I do my home stuff on Linux (or possibly OSX), and it looks like the main development is only for Windows (which I use at work, but only to play games on at home).

The primary development on Windows is a potential problem. Unless and until anybody can convince Microsoft to adopt it for .NET, which I see as very unlikely, it won't get mainstream status there. The Unix-side ecosystem has lots of developers, and more room for a new language to force its way in, much as C++, Perl, and Python did.

I could be wrong (every so often I remember my first impression of the Web, that it would never catch on), but I'd bet fairly heavily against D becoming mainstream. I'm sure it's a nice language, but I've seen lots of nice languages that never became mainstream. The current direction seems to be aimed at displacing the products of large corporations, rather than climbing around in the wainscoting to emerge triumphant.

I do have some suggestions for its proponents.

Fix any Unicode problems. Now. It really doesn't matter what you have to change and discard, or how many programs you break. No language with Unicode issues has a future any brighter than its present.

Keep the Unix-side development at least as current as the Windows-side. It's a lot easier to get mindshare in a world where nobody is fixated on Visual Studio and no company dominates, and critical mass is probably smaller there.

Get some significant application written in D. Anything that a large number of people would recognize would be good for a start. That way, it'll at least look like a serious language, and perceptions are critical in this game.

link|flag
D has proper support for Unicode, you just have to remember a character in unicode is not a single byte. Linux has an up-to-date/stable dmd compiler, released at the same time as the windows version. Innovation is being put into D v2. – he_the_great Mar 8 at 3:58
Glad to hear it; I was just going from the Wikipedia article. However, features with "you just have to remember" in the explanation are always a little suspect at first. – David Thornley Mar 9 at 13:24
Unicode is one big "you just have to remember," especially for systems programming. I don't know anything about D, but Wikipedia makes it sound like it doesn't try to solve the "n-byte character" problem in c-style string functions, which is hardly unreasonable. java.lang.String is the same way. – Tom Mar 18 at 1:03
Have to add an example: a lot of people know that a code point can be up to 4 bytes in UTF-8 or UTF-16, but combining character sequences are arbitrarily long, they count as "one character," and they don't always squash to 4 bytes after normalization. Unicode is more than you think it is. – Tom Mar 18 at 1:11
There are a finite number of code points, and that number fits in four bytes (but not two). I think UTF-8 can extend to six bytes. Unicode can be messy, but it can be made determinate, and it can be handled well by computer languages. – David Thornley Mar 18 at 13:39
vote up 3 vote down

Remember how long it took for C++ to become the dominant offspring of C. C++ programming with CFront was feasible in 1983 (after a couple of years in the lab), but it didn't become the go-to language (no pun intended) until the 90s, when hardware became fast enough, and software subsequently complex enough, that the merits of C++ over straight C became overwhelming.

D hasn't even been around for a decade (the earliest newsgroup posts, talking about an alpha release of the compiler, date back to 2001), so I feel it has some time yet. And if the creators of the language have made a wise design choice in optimizing for multiprocessor hardware, then it may yet have its day.

link|flag
vote up 1 vote down

there's plenty of languages that address the problems with C++ and have also widespread acceptability. If D offers something critical that no other languages offer, then use it. Otherwise your time might be better invested learning the languages that everyone else knows.

link|flag
1  
Other languages, collectively, address the shortcomings of C++, but none address most or all of them while keeping the good aspects, and therefore they don't replace C++ in a lot of its niches. – dsimcha Jan 28 at 4:02
vote up 1 vote down

I for my part would like to see it overtake C++, but I wish that for Objective-C also. My background with Eiffel makes D a decent option if you like the C syntax more than the pascalish syntax from Eiffel. But D has taken quite a few good things from Eiffel, I once was a big fan for Eiffel but these days I assume I'd prefer D.

link|flag
vote up 1 vote down

Last time I checked there were two different versions: A new and current one for Windows only, and an older version (GCC backend) for the rest (Linux, MacOS X, …).

I don't think this development model is very attractive. So, no future at the moment.

link|flag
No, dmd is released for Linux, Windows, and now OSX at the same time with the same features. The OSX work is new so it is buggy and missing things. – he_the_great Mar 8 at 4:02
vote up 0 vote down

I wanted to try D a weeks ago, however I gave up eventually, as the entry barrier was too high for me. After a hour of browsing D related web pages to learn what I need to download and install, I have downloaded Eclipse, some D plugin for it and and some more basic D packages, but after another hour of experimenting I was not able to compile and run even the most basic hello world application because of some build system ill-configuration errors.

link|flag
Have you tried posting here: digitalmars.com/pnews/… The people on this NG are very helpful. The getting started docs are admittedly quite bad b/c D is still in a state of flux. This should improve once the dust settles. – dsimcha Jan 28 at 3:57
No. I am sorry, this is more than I am willing to do. I was just curious, I have no deeper interest in D. If D wants to convince me, it needs to try harder and to make the entry barrier lower. – Suma Jan 29 at 9:09
Sorry to here that; when I experimented with D about a year ago, it took me less than an hour to download, set up and compile my first basic program, as well as a number of packages from DM - but then I program with a text editor, not an IDE. – Software Monkey Jan 31 at 9:01
1  
Stop blaming D for your own incompetence. – Rayne Feb 6 at 21:42
1  
Setting up the D compiler on the Windows platform is a fairly trivial exercise: zeusedit.com/forum/viewtopic.php?t=2465/… – jussij Jul 31 at 4:05
show 2 more comments
vote up 0 vote down

D is a D-ead horse if you ask me. If you've got time, okay. But it's not well documented and hasn't got enough industrial support jet.

link|flag
People have to use the language for it to be well known, and no one will ever use the language if they are too worried about documentation and industrial support. There is a book written about it, and growing documentation. – Rayne Mar 6 at 1:57
vote up 0 vote down

D hasn't stable opensource compiler, it hasn't normal debugger like C++ has. But it has very clean syntax, much better than C++ and more similiar to C# (but doesn't require anything like .NET framework - it generates native code). If it will have stable opensource compiler and good debugger - it will have a great future... I think.

link|flag
What makes you think that gdc isn't stable enough? – hillu Jul 24 at 12:01
The fact that it is based on the GNU Compiler Collection dinosaur. And i need a easy build in debugger that i can ship to the customers to get good crash reports. Also i would like to see a target to c. Because i'm pretty sure that there is a c compiler everywhere and no worry about GCC dropping platforms. – Lothar Oct 16 at 15:49
vote up -2 vote down

Go to dice.com and see how many openings there are for D programmers.

link|flag
-1 The number of job openings for programmers who know X may only tell us anything about X's present (and possibly its past), not its future. – hillu Jul 24 at 12:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.