C++ style guide: Difference between revisions

65 bytes added ,  1 September 2021
m
Formatting changes only
m (Formatting changes only)
Line 97: Line 97:
=== Class declarations ===
=== Class declarations ===


The access specifier ({{codeline|public}}, {{codeline|protected}}, {{codeline|private}}) should always be stated rather than relying on the C++ language defaults for a particular object (for example, "class" = "private").
The access specifier ({{codeline|public}}, {{codeline|protected}}, {{codeline|private}}) should always be stated rather than relying on the C++ language defaults for a particular object (for example, "{{codeline|class}}" = "{{codeline|private}}").


Within a class, the different access blocks should appear in the order 1) public, 2) protected, 3) private.
Within a class, the different access blocks should appear in the order 1) {{codeline|public}}, 2) {{codeline|protected}}, 3) {{codeline|private}}.


=== Namespace ===
=== Namespace ===
1,072

edits