-
Notifications
You must be signed in to change notification settings - Fork 0
/
ch09.html
3 lines (3 loc) · 4.08 KB
/
ch09.html
1
2
3
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>第 9 章 编码风格</title><link rel="stylesheet" href="styles.css" type="text/css" /><meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /><link rel="start" href="index.html" title="Linux C编程一站式学习" /><link rel="up" href="pt01.html" title="部分 I. C语言入门" /><link rel="prev" href="ch08s05.html" title="5. 多维数组" /><link rel="next" href="ch09s01.html" title="1. 缩进和空白" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">第 9 章 编码风格</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch08s05.html">上一页</a> </td><th width="60%" align="center">部分 I. C语言入门</th><td width="20%" align="right"> <a accesskey="n" href="ch09s01.html">下一页</a></td></tr></table><hr /></div><div class="chapter" lang="zh-cn" xml:lang="zh-cn"><div class="titlepage"><div><div><h2 class="title"><a id="id2737598"></a>第 9 章 编码风格</h2></div></div></div><div class="toc"><p><b>目录</b></p><dl><dt><span class="sect1"><a href="ch09s01.html">1. 缩进和空白</a></span></dt><dt><span class="sect1"><a href="ch09s02.html">2. 注释</a></span></dt><dt><span class="sect1"><a href="ch09s03.html">3. 标识符命名</a></span></dt><dt><span class="sect1"><a href="ch09s04.html">4. 函数</a></span></dt><dt><span class="sect1"><a href="ch09s05.html">5. indent工具</a></span></dt></dl></div><p>代码风格好不好就像字写得好不好看一样,如果一个公司招聘秘书,肯定不要字写得难看的,同理,代码风格糟糕的程序员肯定也是不称职的。虽然编译器不会挑剔难看的代码,照样能编译通过,但是和你一个Team的其他程序员肯定受不了,你自己也受不了,写完代码几天之后再来看,自己都不知道自己写的是什么。<a class="xref" href="bi01.html#bibli.sicp" title="Structure and Interpretation of Computer Programs">[<abbr class="abbrev">SICP</abbr>]</a>里有句话说得好:“<span class="quote">Thus, programs must be written for people to read, and only incidentally for machines to execute.</span>”代码主要是为了写给人看的,而不是写给机器看的,只是顺便也能用机器执行而已,如果是为了写给机器看那直接写机器指令就好了,没必要用高级语言了。代码和语言文字一样是为了表达思想、记载信息,所以一定要写得清楚整洁才能有效地表达。正因为如此,在一个软件项目中,代码风格一般都用文档规定死了,所有参与项目的人不管他自己原来是什么风格,都要遵守统一的风格,例如Linux内核的<a class="xref" href="bi01.html#bibli.codingstyle" title="Linux内核源代码目录下的Documentation/CodingStyle文件">[<abbr class="abbrev">CodingStyle</abbr>]</a>就是这样一个文档。本章我们以内核的代码风格为基础来讲解好的编码风格都有哪些规定,这些规定的Rationale是什么。我只是以Linux内核为例来讲解编码风格的概念,并没有说内核编码风格就一定是最好的编码风格,但Linux内核项目如此成功,就足以说明它的编码风格是最好的C语言编码风格之一了。</p></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch08s05.html">上一页</a> </td><td width="20%" align="center"><a accesskey="u" href="pt01.html">上一级</a></td><td width="40%" align="right"> <a accesskey="n" href="ch09s01.html">下一页</a></td></tr><tr><td width="40%" align="left" valign="top">5. 多维数组 </td><td width="20%" align="center"><a accesskey="h" href="index.html">起始页</a></td><td width="40%" align="right" valign="top"> 1. 缩进和空白</td></tr></table></div></body></html>