Хабр Курсы для всех
РЕКЛАМА
Практикум, Хекслет, SkyPro, авторские курсы — собрали всех и попросили скидки. Осталось выбрать!
} else {.// comment
if (cond) {
// actions
}
// comment
else {
// actions
}
if (cond) { // comment
// actions
}
else { // comment
// actions
}
Note that the closing brace is empty on a line of its own, _except_ in
the cases where it is followed by a continuation of the same statement,
ie a «while» in a do-statement or an «else» in an if-statement, like
this:
do {
body of do-loop
} while (condition);
and
if (x == y) {
…
} else if (x > y) {
…
} else {
…
}
Форматирование if–else