www.digitalmars.com

D Programming Language 2.0


Last update Sun Dec 30 20:21:55 2012

The D Style

The D Style is a set of style conventions for writing D programs. The D Style is not enforced by the compiler. It is purely cosmetic and a matter of choice. Adhering to the D Style, however, will make it easier for others to work with your code and easier for you to work with others' code. The D Style can form the starting point for a project style guide customized for your project team.

Submissions to Phobos and other official D source code will follow these guidelines.

Whitespace

Comments

Naming Conventions

General
Unless listed otherwise below, names should be camelCased (this includes all variables). So, names formed by joining multiple words have each word other than the first word capitalized. Also, names do not begin with an underscore ‘_’ unless they are private.
int myFunc();
string myLocalVar;
Modules
Module and package names should be all lowercase, and only contain the characters [a..z][0..9][_]. This avoids problems when dealing with case-insensitive file systems.
import std.algorithm;
Classes, Structs, Unions, Enums, Templates
The names of user-defined types should be PascalCased, which is the same as camelCased except that the first letter is uppercase.
class Foo;
struct FooAndBar;
An exception is that eponymous templates that return a value instead of a type should not be capitalized, as they are conceptually more similar to functions. ------------------------- template GetSomeType(T) { alias T GetSomeType; } template isSomeType(T) { enum isSomeType = is(T == SomeType); } -------------------------
Functions
Function names should be camelCased, so their first letter is lowercase. This includes properties and member functions.
int done();
int doneProcessing();
Constants
The names of constants should be camelCased just like normal variables.
enum secondsPerMinute = 60;
immutable hexDigits = "0123456789ABCDEF";
Enum members
The members of enums should be camelCased, so their first letter is lowercase.
Enum Direction { bwd, fwd, both }
Enum OpenRight { no, yes }

Meaningless Type Aliases

Things like:

alias void VOID;
alias int INT;
alias int* pint;

should be avoided.

Declaration Style

Since the declarations are left-associative, left justify them:

int[] x, y;	// makes it clear that x and y are the same type
int** p, q;	// makes it clear that p and q are the same type

to emphasize their relationship. Do not use the C style:

int []x, y;	// confusing since y is also an int[]
int **p, q;	// confusing since q is also an int**

Operator Overloading

Operator overloading is a powerful tool to extend the basic types supported by the language. But being powerful, it has great potential for creating obfuscated code. In particular, the existing D operators have conventional meanings, such as ‘+’ means ‘add’ and ‘<<’ means ‘shift left’. Overloading operator ‘+’ with a meaning different from ‘add’ is arbitrarily confusing and should be avoided.

Hungarian Notation

Using hungarian notation to denote the type of a variable is a bad idea. However, using notation to denote the purpose of a variable (that cannot be expressed by its type) is often a good practice.

Properties

Functions should be property functions whenever appropriate. In particular, getters and setters should generally be avoided in favor of property functions. And in general, whereas functions should be verbs, properties should be nouns, just like if they were member variables. Getter properties should not alter state.

Documentation

All public declarations will be documented in Ddoc format.

Unit Tests

As much as practical, all functions will be exercised by unit tests using unittest blocks immediately following the function to be tested. Every path of code should be executed at least once, verified by the code coverage analyzer.

Additional Requirements for Phobos

In general, this guide does not try to recommend or require that code conform to any particular formatting guidelines. The small section on whitespace at the top contains its only formatting guidelines. However, for Phobos and other official D source code, there are two additional requirements:

We are not necessarily recommending that all code follow these two rules. They're both likely to be controversial in any discussion on coding standards. However, they are required in submissions to Phobos and other official D source code.





Forums | Comments |  D  | Search | Downloads | Home