When the constellation project grows and has more contributors, it's no longer possible to just tell contributors to “follow the code formatting in the code.” Ostensibly, that never worked anyway.
Here is an attempt to describe how the source code should be formatted. It's a collection of good practises, but will get better over time as it gets more organised.
Note that this style guide is for reference purposes. If you apply NetBean's default formatting layout then you comply with all coding style guidelines.
Always spaces, two of them. Never tabs.
- Always a space after
if. Useif (condition)notif(condition). Example if/else block:
if (condition) {
// yes like this
} else {
// something besides
}
- No single line
ifblocks
if (this) something
else condition condition condition
instead use
if (this) {
// something
} else {
// condition condition condition
}
- No spaces inside parens.
if( condition ) // BAD
if ( condition ){ // BADDER
if (condition) { // good
- Use a space after the paren and before the curly brace:
if (condition) {
not
if (condition){
- For an empty block add a
//comment to be made inside:
if (emptyBlock) {
// a useful comment here about why this case is skipped
}
-
Use spaces before/after commas:
-
someFunction(apple,bear,cat); //bad -
someFunction(apple, bear, cat); // correct -
Use spaces before/after use of +
-
String s = "this is an " + "excessive use " + "of quotes to demonstrate concatenation."; -
String s = "this is the "+adjective+" wrong way "+exclamation+" and is tough to read"; -
Spaces before/after operators in nearly all cases:
if (a == b)notif (a==b)for (int i = 0; i < 10; i++) {
-
...with an exception for cases where it helps clarify order of operations:
int a = 13 + b*12 + c*7 + dis ok to keep the * adjacent for easier reading
Always use braces:
for (int i = 0; i < 10; i++) {
println(i);
}
never this:
for (int i = 0; i < 10; i++)
println(i);
Not using braces is too prone to causing subtle errors when merging code from multiple people.
The rare exception is the occasional ‘continue’ statement at the top of a for-loop, or sometimes a single line if (somethingOrOther) return; if it just doesn't make sense to have a lot of extras.
Starting brace goes on same line, end brace goes on its own. An else statement should look like } else {
Use two blank lines between function blocks.
One blank line after the package declaration.
Two blank lines between the imports and the class definition.
No blank line after the function definition or before the closing brace.
-
Use
String[] linesinstead ofString lines[] -
Use
if (condition == null)instead ofif (null == condition). It reads better to most people. Puttingnullon the left is good practice in C, C++, and perhaps other languages, but the error that it avoids is impossible in Java anyway. And if you want to be really pedantic, the compiler may even produce less efficient code withif (null ==becauseif_acmpneis used, which requires two variables, instead ofifnonnull. -
Only use the
?operator if it saves multiple lines of code. One probably use is a short function that returns a result immediately, i.e.return (something == null) ? 0 : Integer.parseInt(something) -
Place || && etc on the end, not the start, of the line. This keeps variables lined up with one another. (This is different from Oracle style)
-
staticgoes first (beforepublicet al) (This is different from Oracle style)
When adding parameters to a function, add to the end. Don't change order, even if it feels more intuitive for that variation. Only increase the number, don't have alternate forms with the same basic number of arguments.
-
Always one space after the
//in single line comments -
Two spaces before
//at the end of a line (that has code as well) -
Try to use
//comments inside functions, to make it easier to remove a whole block via/* */ -
When making a fix related to an issue on Github, include the URL to the issue. Don't just put #3257 or something like that, use the URL. We can spare the extra characters: the extra letters won't make the PDE run slower, but will make it easier for someone returning to the code to look up the issue.
-
Keep code under 80 columns. Break up statements if you must.
- There are some exceptions (the
PreferencesFrameclass, for instance) where breaking things up is even uglier, so the 80 column limit is occasionally ignored.
- There are some exceptions (the
-
Avoid the chaining madness that has afflicted Java programming of late, where dots are placed at the end (or even beginning) of multi-line indented poetry.
Please try to avoid the following style:
if (parent ==null) return fromAngle((float)(Math.random()*Math.PI*2),target);
else return fromAngle(parent.random(PConstants.TWO_PI),target);
(Point being, don't get cute with adding extra space to indentation for symmetry that you like personally. This is really subjective territory, and should just be avoided.)
Please don’t stack up declarations and definitions:
public static final int STATUS_EMPTY = 100, STATUS_COMPILER_ERR = 200, STATUS_WARNING = 300, STATUS_INFO = 400, STATUS_ERR = 500;
Because someday, we're gonna remove STATUS_INFO and that'll make it tougher to see the change. Just write them out like the following way:
static final int STATUS_EMPTY = 100;
static final int STATUS_COMPILER_ERR = 200;
...etc
If importing many items inside a single package, consider using * instead of listing out a dozen individual classes.
Please do not expand the imports in source that you’re editing.
Where possible, make sure text files checked into the repo are text files, and are marked as such so they can use the correct encoding for the platform. Please use this convention for newer files (or help us fix the others).
-
Inner classes don’t reach in and reference inner classes from classes not in the same file.
-
Ordering if blocks Where possible make the default case the first part of the ‘if’ block. this can’t be done slavishly because it can make things awkward, but it’s generally a useful idea.