“ Java is to JavaScript what Car is to Carpet. ” - Chris Heilmann
![]() |
| “Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.” - Martin Golding |
“ Before software can be reusable it first has to be usable. ” - Ralph Johnson
Two types of info flow: data or control.
Cohesion
Many levels of cohesion:
Coincidental cohesion:Coding Standards and Code Reviews
“Measuring programming progress by lines of code is like measuring aircraft building progress by weight.”
- Bill Gates (co-founder of Microsoft)
When you write code, consider the following to improve performance, keep the coding clean and to reduce run time exceptions.
- Declare All Variables - In some programming languages, like in JavaScript or in C#. A variable that is not declared will be created with a default type. Normally it will be implicitly created as a Variant.
- Avoid elusive names that are open to subjective interpretation, such as Analyze() for a routine, or jjK4 for a variable. Such names contribute to ambiguity more than abstraction.
- In object-oriented languages, it is redundant to include class names in the name of class properties, such as Book.BookTitle. Instead, use Book.Title.
- Use the verb-noun method for naming routines that perform some operation on a given object, such as CalculateInvoiceTotal().
- In languages that permit function overloading, all overloads should perform a similar function. For those languages that do not permit function overloading, establish a naming standard that relates similar functions.
- Use Strongly Typed Object Variables - Object variables represent pointers to COM objects. They can be declared in two ways, as follows:
- When you defect a variable As Object in Java or C# that variable can be used to represent any kind of object; this is a weakly typed object variable.
- Use the As keyword with the specific type of the object; this is a strongly typed object variable.
- Names - Perhaps one of the most influential aids to understanding the logical flow of an application is how the various elements of the application are named. A name should tell "what" rather than "how." By avoiding names that expose the underlying implementation, which can change, you preserve a layer of abstraction that simplifies the complexity. For example, you could use GetNextStudent() instead of GetNextArrayElement().
- Append computation qualifiers (Avg, Sum, Min, Max, Index) to the end of a variable name where appropriate.
- Use customary opposite pairs in variable names, such as min/max, begin/end, and open/close.
- Since most names are constructed by concatenating several words together, use mixed-case formatting to simplify reading them. In addition, to help distinguish between variables and routines/functions, use Pascal casing (CalculateInvoiceTotal) for routine/functions names where the first letter of each word is capitalized. For variable names, use camel casing (documentFormatType) where the first letter of each word except the first is capitalized.
- Boolean variable names should contain Is which implies Yes/No or True/False values, such as fileIsFound.
- Avoid using terms such as Flag when naming status variables, which differ from Boolean variables in that they may have more than two possible values. Instead of documentFlag, use a more descriptive name such as documentFormatType.
- Even for a short-lived variable that may appear in only a few lines of code, still use a meaningful name. Use single-letter variable names, such as i, or j, for short-loop indexes only.
- If using Charles Simonyi's Hungarian Naming Convention, or some derivative thereof, develop a list of standard prefixes for the project to help developers consistently name variables. For more information, see "Hungarian Notation."
- For variable names, it is sometimes useful to include notation that indicates the scope of the variable, such as prefixing a g_ for global variables and m_ for module-level variables in Microsoft Visual Basic®.
- Constants should be all uppercase with underscores between words, such as NUM_DAYS_IN_WEEK. Also, begin groups of enumerated types with a common prefix, such as FONT_ARIAL and FONT_ROMAN.
- A tenet of naming is that difficulty in selecting a proper name may indicate that you need to further analyze or define the purpose of an item. Make names long enough to be meaningful but short enough to avoid being wordy. Programmatically, a unique name serves only to differentiate one item from another. Expressive names function as an aid to the human reader; therefore, it makes sense to provide a name that the human reader can comprehend. However, be certain that the names chosen are in compliance with the applicable language's rules and standards.
- When naming tables, express the name in the singular form. For example, use Employee instead of Employees.
- When naming columns of tables, do not repeat the table name; for example, avoid having a field called EmployeeLastName in a table called Employee.
- Do not incorporate the data type in the name of a column. This will reduce the amount of work needed should it become necessary to change the data type later.
- In Microsoft SQL Server, do not prefix stored procedures with sp_, because this prefix is reserved for identifying system-stored procedures.
- In Transact-SQL, do not prefix variables with @@, which should be reserved for truly global variables such as @@IDENTITY.
- Minimize the use of abbreviations. If abbreviations are used, be consistent in their use. An abbreviation should have only one meaning and likewise, each abbreviated word should have only one abbreviation. For example, if using min to abbreviate minimum, do so everywhere and do not later use it to abbreviate minute.
- When naming functions, include a description of the value being returned, such as GetCurrentWindowName().
- File and folder names, like procedure names, should accurately describe what purpose they serve.
- Avoid reusing names for different elements, such as a routine called ProcessSales() and a variable called iProcessSales.
- Avoid homonyms when naming elements to prevent confusion during code reviews, such as write and right.
- When naming elements, avoid using commonly misspelled words. Also, be aware of differences that exist between American and British English, such as color/colour and check/cheque.
- Avoid using typographical marks to identify data types, such as $ for strings or % for integers.
- When it come to Comments, Software documentation exists in two forms, external and internal. External documentation is maintained outside of the source code, such as specifications, help files, and design documents. Internal documentation is composed of comments that developers write within the source code at development time.
- One of the challenges of software documentation is ensuring that the comments are maintained and updated in parallel with the source code. Although properly commenting source code serves no purpose at run time, it is invaluable to a developer who must maintain a particularly intricate or cumbersome piece of software.
- Following are recommended commenting techniques:
- When modifying code, always keep the commenting around it up to date.
- At the beginning of every routine, it is helpful to provide standard, boilerplate comments, indicating the routine's purpose, assumptions, and limitations. A boilerplate comment should be a brief introduction to understand why the routine exists and what it can do.
- Avoid adding comments at the end of a line of code; end-line comments make code more difficult to read. However, end-line comments are appropriate when annotating variable declarations. In this case, align all end-line comments at a common tab stop.
- Avoid using clutter comments, such as an entire line of asterisks. Instead, use white space to separate comments from code.
- Avoid surrounding a block comment with a typographical frame. It may look attractive, but it is difficult to maintain.
- Prior to deployment, remove all temporary or extraneous comments to avoid confusion during future maintenance work.
- If you need comments to explain a complex section of code, examine the code to determine if you should rewrite it. If at all possible, do not document bad code—rewrite it. Although performance should not typically be sacrificed to make the code simpler for human consumption, a balance must be maintained between performance and maintainability.
- Use complete sentences when writing comments. Comments should clarify the code, not add ambiguity.
- Comment as you code, because most likely there won't be time to do it later. Also, should you get a chance to revisit code you've written, that which is obvious today probably won't be obvious six weeks from now.
- Avoid the use of superfluous or inappropriate comments, such as humorous sidebar remarks.
- Use comments to explain the intent of the code. They should not serve as inline translations of the code.
- Comment anything that is not readily obvious in the code.
- To prevent recurring problems, always use comments on bug fixes and work-around code, especially in a team environment.
- Use comments on code that consists of loops and logic branches. These are key areas that will assist the reader when reading source code.
- Separate comments from comment delimiters with white space. Doing so will make comments stand out and easier to locate when viewed without color clues.
- Throughout the application, construct comments using a uniform style, with consistent punctuation and structure.
- Despite the availability of external documentation, source code listings should be able to stand on their own because hard-copy documentation can be misplaced.
- External documentation should consist of specifications, design documents, change requests, bug history, and the coding standard that was used.
- Formatting makes the logical organization of the code stand out. Taking the time to ensure that the source code is formatted in a consistent, logical manner is helpful to yourself and to other developers who must decipher the source code.
”Walking on water and developing software from a specification are easy if both are frozen.”
