Software Engineers Handbook/Supporting Processes/Coding Standards

< Software Engineers Handbook < Supporting Processes

Here is the wikipedia entry for coding standards.

Coding standards generally contain a set of conventions for a specific language. Items typically covered are:

{
    {
        // code in here
    }
}

C++

Java

C

Eiffel

Naming conventions

"Always, always, always use good, unabbreviated, correctly-spelled meaningful names." -- c2: MeaningfulName

Popular naming conventions (naming formats) include:

For surprisingly long conversations about naming conventions, see c2: UnderscoreVersusCapitalAndLowerCaseVariableNaming; Wikipedia: CamelCase; c2: CamelCase; and "Underscores vs CamelCase".

Further reading

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.