but I feel it is not readable as I have never used this before (and
nobody teached me this). And it is especially a disadvantage for
beginners in programming. [so "concise" for whom?]
Please guys, stick to the long but readable version if you write public
code.
my 2 cents
Stefan
PS: this remi
On another note all blocks should use {}, spaces instead of tabs. 2
spaces is the perfect amount of indent.
void mmm(int i, String[] sss) {
if (i < 0) {
i = 0;
}
if (sss == null) {
sss = new String[0];
}
}
P.Rizzi Ag.Mobilità Ambiente wrote:
I use the ?: a lot!!!
I agree that an i