Programming Style Guide: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
(ContinuousReplacement)
Tag: continuous replacement
No edit summary
Line 1: Line 1:
A [[Programming Style Guide]] is a [[style guide]] for [[programming]].
A [[Programming Style Guide]] is a [[software programming style]] that is a [[style guide]].
* <B>Context:</B>
* <B>Context:</B>
** It can (often) be a part of a [[Coding Convention]].
** It can (often) be a part of a [[Coding Convention]].
Line 12: Line 12:


== References ==
== References ==
=== 2024 ===
* (Wikipedia, 2024) ⇒ https://en.wikipedia.org/wiki/Programming_style Retrieved:2024-2-9.
** '''Programming style''', also known as '''code 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 [[programmer]]s read and understand source code conforming to the style, and help to avoid introducing errors. <P> 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. <P> 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 (programming language)|C]] source code may not be appropriate for [[BASIC programming language|BASIC]] source code, etc. However, some rules are commonly applied to many languages.


=== 2018 ===
=== 2018 ===
* (Wikipedia, 2018) ⇒ https://en.wikipedia.org/wiki/programming_style Retrieved:2018-11-14.
* (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 [[programmer]]s read and understand source code conforming to the style, and help to avoid introducing errors.         <P>        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.         <P>        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 (programming language)|C]] source code may not be appropriate for [[BASIC programming language|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]]. ...


----
----
Line 21: Line 25:
__NOTOC__
__NOTOC__
[[Category:Concept]]
[[Category:Concept]]
=== 2024 ===
* (Wikipedia, 2024) ⇒ https://en.wikipedia.org/wiki/Programming_style Retrieved:2024-2-9.
** '''Programming style''', also known as '''code 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 [[programmer]]s read and understand source code conforming to the style, and help to avoid introducing errors. <P> 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. <P> 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 (programming language)|C]] source code may not be appropriate for [[BASIC programming language|BASIC]] source code, etc. However, some rules are commonly applied to many languages.

Revision as of 00:18, 10 February 2024

A Programming Style Guide is a software programming style that is a style guide.



References

2024

  • (Wikipedia, 2024) ⇒ https://en.wikipedia.org/wiki/Programming_style Retrieved:2024-2-9.
    • Programming style, also known as code 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.

2018