Friday, June 24, 2011

Coding Guidelines part2

Code Naming Basics

* It's include the naming of classes, methods,functions and other elements of a programmatic interfaces.

General Principles

Clarity

* Its is good to be both clear and brief as possible.

 * Clarity shouldn't suffer became of brevity  



* In general, don’t abbreviate names of things. Spell them out, even if they’re long:










Coding Guidelines part1