Tagged Questions

D is a systems programming language developed by Walter Bright. 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 concurrency, reliability, documentation, quality assurance, management and portability. The D language is statically typed and compiles directly to machine code. It supports many programming styles:

learn more… | top users | synonyms

82
votes
13answers
11k views

C++ versus D

Is the D language a credible alternative to Java and C++? What will it take to become a credible alternative? Should I bother learning it? Does it deserve evangelizing? The main reason I ask is that ...
54
votes
25answers
8k views

Why isn't the 'D' language picking up? [closed]

Anybody using language 'D'? Why isn't it more popular?
48
votes
8answers
1k views

To GC or Not To GC

I've recently seen two really nice and educating languages talks: This first one by Herb Sutter, presents all the nice and cool features of C++0x, why C++'s future seems brighter than ever, and how ...
45
votes
7answers
3k views

How fast is D compared to C++?

I like some features of D, but would be interested if they come with a runtime penalty? To compare, I implemented a simple program that computes scalar products of many short vectors both in C++ and ...
44
votes
15answers
8k views

D Programming Language in the real world?

Is anyone out there using D for real world applications? If so, what are you using it for? I can't seem to find anything big on the web written in D. Despite the lack of known big users, D seems like ...
43
votes
3answers
2k views

Why 0.1 + 0.2 == 0.3?

assert(0.1 + 0.2 != 0.3); // shall be true is my favorite check that a language uses native floating point arithmetic. C++ #include <cstdio> int main() { printf("%d\n", (0.1 + 0.2 != ...
42
votes
9answers
7k views

Metaprogramming in C++ and in D

The template mechanism in C++ only accidentally became useful for template metaprogramming. On the other hand, D's was designed specifically to facilitate this. And apparently it's even easier to ...
37
votes
7answers
1k views

Is D's grammar really context-free?

I've posted this on the D newsgroup some months ago, but for some reason, the answer never really convinced me, so I thought I'd ask it here. The grammar of D is apparently context-free. The ...
36
votes
6answers
2k views

What are the current challenges of the D programming language?

I'm wondering how mature and stable D is, and if it might be a good replacement for C/C++. I know that there are currently two standard libraries (Phobos and Tango), so I assume that there might be ...
34
votes
2answers
2k views

D versus Go comparison

It would be interesting to contrast these two new languages by several aspects: What are their design influences? Where do they intersect in their goals / where do they rival? Where are they ...
26
votes
15answers
3k views

Hidden features of D

Continuing on the hidden features meme, I'd like to ask, what are the lesser-known features of the D programming language that every D user should know about? Some related program language "hidden ...
25
votes
3answers
520 views

Can a compiler automatically detect pure functions without the type information about purity?

So I'm arguing with my friend who claims that a compiler like GCC can detect a pure function automatically without any type information. I doubt that. Languages like D or Haskell have purity in their ...
23
votes
8answers
2k views

The D Programming Language for Game Development

Recently I've been bothered because I reached a point in which C++ (even 0x) felt very limited, so I started looking for alternatives. Forget Java, C#, Python or Ruby. I still like the low-level ...
21
votes
3answers
891 views

Is D2 language ready for production?

I've been eagerly learning D language these last days. It looks like a dream for me as a supporter of several millions lines of C++ code. We support heavy performance low latency system and it is ...
21
votes
13answers
6k views

An IDE for D

Does anyone know of an IDE for the D Programming Language?
20
votes
6answers
885 views

C++ Templates: Angle brackets problems

In C++ templates are instantiated with angle brackets vector<int> and the Java and C# languages have adopted the same syntax for their generics. The creators of D, however, have been quite ...
20
votes
14answers
2k views

What next generation low level language is the best bet to migrate the code base?

Let's say you have a company running a lot of C/C++, and you want to start planning migration to new technologies so you don't end up like COBOL companies 15 years ago. For now, C/C++ runs more than ...
19
votes
2answers
737 views

DMD vs. GDC vs. LDC

What are the Pros/Cons of the different D Compilers? How is the performance and the standard compliance/D2 support? How well are debuggers supported? How good are the Error messages and is the IDE ...
19
votes
2answers
1k views

Getting Embedded with D (the programming language)

I like a lot of what I've read about D. Unified Documentation (That would make my job a lot easier.) Testing capability built in to the language. Debug code support in the language. Forward ...
19
votes
9answers
2k views

Applications development with D language

For those who had developed applications with D, which libraries did you use to build your application? those libraries were good documented? did you use Tango? do you feel that D is ready to build ...
19
votes
4answers
3k views

Is anyone using D in commercial applications?

Ok, this is a little open ended, but I think D could do with a bit of promotion. Personally I think D is a superb implementation language - but it's not mainstream enough yet for many people to take ...
19
votes
12answers
1k views

D Templates: Coolest Hack

What is the coolest somewhat practical metaprogramming hack you've done or seen done in the D programming language? Somewhat practical means excluding, for example, the compile-time raytracer.
18
votes
6answers
1k views

D standard library

I've decided to learn D, and I'm wondering which standard library I should use. Should I use Phobos or Tango? What are the pros and cons of each?
17
votes
2answers
494 views

nginx, fastcgi and open sockets

I'm experimenting using fastcgi on nginx, but I've run into some problems. Nginx doesn't reuse connections, it gives 0 in BeginRequest flags, so the application should close the connection after the ...
17
votes
6answers
1k views

C++ vs. D , Ada and Eiffel (horrible error messages with templates)

One of the problems of C++ are horrible error messages that we are getting from code which intensively uses templates and template metaprogramming. The concepts are designed to solve this problem, ...
17
votes
2answers
2k views

How well does D support 64 bit?

I'd like to try out the D programming language. I have simple pet project I've been meaning to finish and I thought it would be good opportunity to learn D 2.0. However, my primary OS is kubuntu ...
16
votes
0answers
185 views

Can any modern OO language compete with C++'s array store performance? [migrated]

I just noticed that every modern OO programming language that I am at least somewhat familiar with (which is basically just Java, C# and D) allows covariant arrays. That is, a string array is an ...
16
votes
2answers
274 views

Can traits in D be used for type classes?

I'm new to D, and I'm looking for a good way to program with Haskell-like type classes e.g. Functors, Monoids, etc. in D. Is something like this implemented in Tango or Phobos? I've heard about ...
16
votes
5answers
840 views

Is worth the effort to learn D?

Ok, let me reformulate the question. Imagine you have 3 projects: A text editor for programmers, a compiler and a search engine library for at least 3 types of files: html, .xls and pdf. You have 3 ...
14
votes
3answers
397 views

Implementing a C API in D

So there's plenty of information about calling C APIs from within D, but how about the reverse? What do you need to do to write a library in D that works like a normal C shared library? Here's an ...
14
votes
3answers
459 views

pattern matching in D

I recently stumbled over the D programming Language and i really like it. You can programm really high-level while having full Hardware access like in C. coming from a rather functional background ...
14
votes
4answers
705 views

Does D have something akin to C++0x's move semantics?

A problem of "value types" with external resources (like std::vector<T> or std::string) is that copying them tends to be quite expensive, and copies are created implicitly in various contexts, ...
14
votes
2answers
784 views

Erlang style concurrency in the D programming language

I think Erlang-style concurrency is the answer to exponential growth of core count. You can kind of fake it with other main stream languages. But the solutions always leave me wanting. I am not ...
14
votes
6answers
3k views

Why is thread local storage so slow?

I'm working on a custom mark-release style memory allocator for the D programming language that works by allocating from thread-local regions. It seems that the thread local storage bottleneck is ...
14
votes
9answers
848 views

Impressions of D?

I've checked the tags and there is nothing for D - the programming language from Digital Mars. It is listed 12th on the TIOBE index, just after Ruby, so it must have some following. Anybody been ...
13
votes
1answer
330 views

Pure functional programming in D

To my mind the power of functional purity is when deep code paths can be verified as side-effect free. What are people's experiences in the scale of the code tree that can be inside a pure specifier, ...
13
votes
4answers
653 views

ptrdiff_t too small?

I've always wondered: isn't ptrdiff_t supposed to be able to hold the difference of any two pointers by definition? How come it fails when the two pointers are too far? (I'm not pointing at any ...
13
votes
8answers
531 views

Walter Bright's use of the word “redundancy”… or 'The heck does that mean?'

So I'm reading this interview with Walter Bright about the D language in Bitwise (http://www.bitwisemag.com/copy/programming/d/interview/d_programming_language.html), and I come across this really ...
13
votes
4answers
484 views

D operators that are not in C++

Are there any operators in D that are not in C++?
13
votes
8answers
848 views

Where to find algorithms for standard math functions?

I'm looking to submit a patch to the D programming language standard library that will allow much of std.math to be evaluated at compile time using the compile-time function evaluation facilities of ...
13
votes
2answers
361 views

Can I create a Python extension module in D (instead of C)

I hear D is link-compatible with C. I'd like to use D to create an extension module for Python. Am I overlooking some reason why it's never going to work?
13
votes
2answers
521 views

How would you approach using D in a embedded real-time environment?

To all those familiar with D programming language, how would go about using it in a embedded real-time environment? I understand that it's original design is not targeted for real-time embedded ...
12
votes
2answers
179 views

Why Are Modules Explicitly Stated in Files?

From the D language reference: Modules have a one-to-one correspondence with source files. The module name is the file name with the path and extension stripped off. Module names are still ...
12
votes
2answers
191 views

When to use void[] vs. ubyte[] in D

Is there a general rule as to when I should use void[] instead of ubyte[]? Is either preferred?
12
votes
2answers
259 views

for and foreach statements in D

Besides the syntactic differences, are the two inherently the same? Are both of them implemented in the core language? or is foreach part of the standard library? And as far as performance, does it ...
12
votes
3answers
619 views

how to memory map a huge matrix?

Suppose you got a huge (40+ GB) feature value (floating-point) matrix, rows are different features and columns are the samples/images. The table is precomputed column-wise. Then it is completely ...
12
votes
2answers
425 views

What is a “yield return” equivalent in the D programming language?

Here is a simple generator in C#. IEnumerable<int> Foo() { int a = 1, b = 1; while(true) { yield return b; int temp = a + b; ...
12
votes
4answers
531 views

Examples of what D’s templates can be used for

I hear that the D language has powerful metaprogramming features for executing functions at compile time. That sounds very exciting, but I find it difficult to think of practical examples of things ...
12
votes
1answer
257 views

What are the limitations of primitive character types in D?

I am currently exploring the specification of the Digital Mars D language, and am having a little trouble understanding the complete nature of the primitive character types. The book Learn to Tango ...
12
votes
10answers
3k views

Do getters and setters impact performance in C++/D/Java?

This is a rather old topic: Are setters and getters good or evil? My question here is: do compilers in C++ / D / Java inline the getters and setter? To which extent do the getters/setters impact ...

1 2 3 4 5 12