I’ve just started a Google Moderator on Coding styles. The idea is to find which coding style preferences are accepted by the majority, which interest nobody and which are balanced between likers and haters.

Google Moderator is not the perfect platform for this kind of experiment (no code formatting, no urls…) but I wanted to give it a try.
Feel free to add a lot more questions.
Blog
Coding standards, Google moderator, Java
After I wrote a teaser on coding standard, I found this article saying that Style is symmetry and structure! I’ve allways felt that Sun’s standard was hurting my poor brain but I couldn’t say why. Now, thanks to this article, I know why. Symmetry ! Read more…
Blog
Coding standards
Each developer has its own view on coding standards. What about you ?
Do you prefer this syntax :
JAVA:
-
int arrayIndex = 1 ;
-
boolean isOk = true ;
-
-
if (isOk)
-
{
-
doSomething() ;
-
}
-
else if (1 == arrayIndex)
-
{
-
doSomethingElse() ;
-
}
-
-
public static boolean contains (int[] anArray, int aValue)
-
{
-
for (int i = anArray.length - 1; i>= 0; i--)
-
{
-
if (anArray [i] == aValue)
-
{
-
return true ;
-
}
-
}
-
return false ;
-
}
or this one :
JAVA:
-
int array_index=1;
-
boolean isOk;
-
isOk=true;
-
if (isOk == true) {
-
do_something();
-
} else if (array_index==1) {
-
do_something_else();
-
}
-
-
public
-
static
-
boolean
-
contains (int[] array, int value) {
-
boolean found;
-
for (int i=anArray.length-1; i>=0; --i) {
-
if (aValue==anArray [i]) {
-
found=true;
-
break;
-
}
-
return found ;
-
}
I've been using the former for a long time now (on JAVA and C/C++) and I couldn't change my habits so easily.
Blog
Coding standards