由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Indent的问题
相关主题
问一下python初学者的问题lisper
缩进用空格好,还是tab好?jun rao说kafka已经开始用Java代码重写部分code了
Python for Data Analysis一个naive的问题——是否有这种工具?
麻烦有谁知道怎么改变EMACS里的字体大小?indent C++ source code by VC++ 6.00
真正有货的,没有骂人的花了一个小时学习了python
Python 缩进的syntax请问运行python的一些技巧。
python的一大缺点[合集] 大家的set sw都设多少啊?
有人用Haskell吗请问大家怎样让程序难以读懂
相关话题的讨论汇总
话题: indent话题: gnu话题: 这样话题: better话题: 缺省
进入Programming版参与讨论
1 (共1页)
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, 是你要得这样.
1 (共1页)
进入Programming版参与讨论
相关主题
请问大家怎样让程序难以读懂真正有货的,没有骂人的
implement a simple regular expression match?Python 缩进的syntax
这个程序怎么解决python的一大缺点
vi 和我有人用Haskell吗
问一下python初学者的问题lisper
缩进用空格好,还是tab好?jun rao说kafka已经开始用Java代码重写部分code了
Python for Data Analysis一个naive的问题——是否有这种工具?
麻烦有谁知道怎么改变EMACS里的字体大小?indent C++ source code by VC++ 6.00
相关话题的讨论汇总
话题: indent话题: gnu话题: 这样话题: better话题: 缺省