Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 857 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 857 Bytes

Database

代码规范

命名规范

  • 普通变量采用 小写字母 + 下划线 的形式,如:table_id
  • 常量采用 大写字母 + 下划线 的形式,如:PAGE_NUM
  • 函数采用 驼峰命名法,如:getPageID()
  • 类采用 每个单词首字母大写 的形式,如:FieldInt
  • 接口采用 I + 每个单词首字母大写 的形式,如:IField

其他

  • 注意对类、接口及主要函数的注释
  • 最好统一为左侧大括号换行书写

版本控制

  1. 将主库Fork到自己的Github
  2. 在自己库的自己的分支下进行操作(每个人的分支以姓命名)
  3. 使用Pull request将自己库下自己的分支提交到主库下master分支,由程嘉梁进行合并
  4. 在写代码前使用Pull request将自己库下自己的分支与主库下master分支同步