-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Coding Style
happlebao edited this page Mar 2, 2017
·
6 revisions
中文: 编程的智慧
English:translation1 translation2
- Use noun instead of get when function return result. e.g.
MessageFromFile
,FormattedTime
- Use verb when there is no return result. e.g.
PrintMessages
- Don't use self
- 不要用 get 作为函数名,表示取数据懂函数直接描述动作,例:
MessageFromFile
- 对于完成一定动作的函数,使用对应动词,例:
PrintMessages
- 对于返回指定格式或类型的值的函数,使用对应名词 和/或 形容词(的组合),例:
FormattedTime
- 不要使用 self