- 8
- 0
- 约5.52千字
- 约 11页
- 2018-01-18 发布于河南
- 举报
WebKit代码规范
WebKit代码规范缩进
使用空格而不是Tab。Tab只应该出现在有语义的文件里,如makefile文件。
缩进大小为4个空格。正确:
?
int?main()?{?????return?0;?}
错误:
int?main()?{?return?0;?}
在头文件中,命名空间中的代码应该被缩进。正确:
?
// Document.h?namespace?WebCore?{???class?Document?{?Document();?...?};???}?// namespace WebCore
错误:
// Document.h???namespace?WebCore?{?class?Document?{?? Document();?? ... ??};???}?// namespace WebCore
在实现文件中,命名空间中的代码不应该缩进。正确:
?
// Document.cpp?namespace?WebCore?{?Document::Document()?{?...?}?}?// namespace WebCore
错误:
// Document.cpp?namespace?WebCore?{?? Document::Document()?{?...?}???}?// namespace WebCore
case标签应该和switch对齐,case下的语句要缩
您可能关注的文档
- Configeration知识android.docx
- tinyMCE使用详解.docx
- 1350340122 刘光宇 实验四.doc
- AXIS入门SOAP.docx
- PROE产品演示.doc
- ArcIMS学习.doc
- pthread相关.docx
- tapestry初探.docx
- 网站安全 对预防SQL注入的建议.doc
- 深入理解计算机系统 CSAPP Tiny web 服务器.doc
- 小学四年级数学下册:小数点位置移动变化规律深度导学案.docx
- “闹里有钱,静外安身”-俗语解读.pptx
- 2024-2025学年粮油食品检验人员试题预测试卷(名师系列)附答案详解.docx
- 教师春训个人试题及答案.docx
- 手持式电动草坪修边机的技术演进与市场应用分析.pptx
- 沪教牛津版初中英语七年级下册Unit1词汇精讲教案.docx
- 初中英语七年级下册 Unit 1 Can you play the guitar 第1课时 教案.docx
- 2023年度粮油食品检验人员考前冲刺测试卷【全优】附答案详解.docx
- 小学道德与法治四年级下册《我们当地的风俗》第一课时教案.docx
- 河南省实验中学2025-2026学年高二上学期第一次月考历史试卷(含答案).docx
原创力文档

文档评论(0)