m******n 发帖数: 155 | 1 用GNU indent,加什么option可以有这样的格式:
if( ... )
{
. . .
}
缺省的是这样:
if( ... ) {
. . .
} |
m*****e 发帖数: 4193 | 2 I think the default is better.
【在 m******n 的大作中提到】 : 用GNU indent,加什么option可以有这样的格式: : if( ... ) : { : . . . : } : 缺省的是这样: : if( ... ) { : . . . : }
|
T***B 发帖数: 137 | 3 What I do:
If 'if' block is short, just put '{' at the end of the line to save space.
Otherwise, start '{' from a new line to get better readability.
if( ... ) {
. . .
}
if (... &&
...)
{
...
} |
k*****c 发帖数: 1670 | 4 better be consistent.
【在 T***B 的大作中提到】 : What I do: : If 'if' block is short, just put '{' at the end of the line to save space. : Otherwise, start '{' from a new line to get better readability. : if( ... ) { : . . . : } : if (... && : ...) : { : ...
|
c****e 发帖数: 1453 | 5 emacs 下我用 "ellemtel" style, 是你要得这样. |