Programming Style Guide: Difference between revisions
Jump to navigation
Jump to search
(Created page with "A Programming Style Guide is a style guide that ... * <B>See:</B> Programming Language, The Elements of Programming Style. ---- ---- ==References== === 2018 =...") |
No edit summary |
||
Line 1: | Line 1: | ||
A [[Programming Style Guide]] is a [[style guide]] that ... | A [[Programming Style Guide]] is a [[style guide]] that ... | ||
* <B>See:</B> [[Programming Language]], [[The Elements of Programming Style]]. | * <B>Example(s):</B> | ||
** a [[Spark Programming Style Guide]], such as [https://github.com/MrPowers/spark-style-guide/blob/master/README.md]. | |||
* <B>See:</B> [[Programming Language]], [[The Elements of Programming Style]], [[Coding Conventions]]. | |||
---- | ---- | ||
---- | ---- |
Revision as of 17:58, 14 November 2018
A Programming Style Guide is a style guide that ...
- Example(s):
- a Spark Programming Style Guide, such as [1].
- See: Programming Language, The Elements of Programming Style, Coding Conventions.
References
2018
- (Wikipedia, 2018) ⇒ https://en.wikipedia.org/wiki/programming_style Retrieved:2018-11-14.
- Programming style is a set of rules or guidelines used when writing the source code for a computer program. It is often claimed that following a particular programming style will help programmers read and understand source code conforming to the style, and help to avoid introducing errors.
A classic work on the subject was The Elements of Programming Style, written in the 1970s, and illustrated with examples from the Fortran and PL/I languages prevalent at the time.
The programming style used in a particular program may be derived from the coding conventions of a company or other computing organization, as well as the preferences of the author of the code. Programming styles are often designed for a specific programming language (or language family): style considered good in C source code may not be appropriate for BASIC source code, etc. However, some rules are commonly applied to many languages.
- Programming style is a set of rules or guidelines used when writing the source code for a computer program. It is often claimed that following a particular programming style will help programmers read and understand source code conforming to the style, and help to avoid introducing errors.