Chinaunix首页 | 论坛 | 博客
  • 博客访问: 226536
  • 博文数量: 66
  • 博客积分: 2510
  • 博客等级: 少校
  • 技术积分: 700
  • 用 户 组: 普通用户
  • 注册时间: 2009-07-27 22:10
个人简介

闲时会写写程序的非技术人员。

文章分类

全部博文(66)

文章存档

2022年(1)

2018年(11)

2011年(1)

2010年(36)

2009年(17)

我的朋友

分类: C/C++

2009-10-17 10:37:07

原帖:
 
Write clearly - don't be too clever.
Say what you mean, simply and directly.
Use library functions.
Avoid temporary variables.
Write clearly - don't sacrifice clarity for "efficiency".
Let the machine do the dirty work.
Replace repetitive expressions by calls to a common function.
Parenthesise to avoid ambiguity.
Choose variable names that won't be confused.
Avoid unnecessary branches.
Use the good features of a language; avoid the bad ones.
Don't use conditional branches as a substitute for a logical expression.
Use the "telephone test" for readability.
Make your program read from top to bottom.
Use the fundamental control flow constructs.
Write first in an easy-to-understand pseudo-language; then translate into
whatever language you have to use.
Follow each decision as closely as possible with its associated action.
Use data arrays to avoid repetitive control sequences.
Choose a data representation that makes the program simple.
Don't stop with your first draft.
Modularise.  Use subroutines.
Make the coupling between modules visible.
Each module should do one thing well.
Make sure every module hides something.
Let the data structure the program.
Don't patch bad code - rewrite it.
Write and test a big program in small pieces.
Use recursive procedures for recursively-defined data structures.
Test input for validity and plausibility.
Make sure input cannot violate the limits of the program.
Terminate input by end-of-file or marker, not by count.
Identify bad input; recover if possible.
Treat end of file conditions in a uniform manner.
Make input easy to prepare and output self-explanatory.
Use uniform input formats.
Make input easy to proofread.
Use free-form input when possible.
Use self-identifying input.  Allow defaults.  Echo both on output.
Localise input and output in subroutines.
Make sure all variables are initialised before use.
Don't stop at one bug.
Use debugging compilers.
Initialise constants with DATA statements or INITIAL attributes;
initialise variables with executable code.
Watch out for off-by-one errors.
Take care to branch the right way on equality.
Avoid multiple exits from loops.
Make sure your code "does nothing" gracefully.
Test programs at their boundary values.
Program defensively.
10.0 times 0.1 is hardly ever 1.0.
Don't compare floating point numbers just for equality.
Make it right before you make it faster.
Keep it right when you make it faster.
Make it clear before you make it faster.
Don't sacrifice clarity for small gains in "efficiency".
Let your compiler do the simple optimisations.
Don't strain to re-use code; reorganise instead.
Make sure special cases are truly special.
Keep it simple to make it faster.
Don't diddle code to make it faster - find a better algorithm.
Instrument your programs.  Measure before making "efficiency" changes.
Make sure comments and code agree.
Don't just echo the code with comments - make every comment count.
Don't comment bad code - rewrite it.
Use variable names that mean something.
Use statement labels that mean something.
Format a program to help the reader understand it.
Indent to show the logical structure of a program.
Document your data layouts.
Don't over-comment.
阅读(685) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~