descriptionnone
repository URLhttps://github.com/isocpp/CppCoreGuidelines.git
ownerstefan.naewe+rr@gmail.com
last changeSun, 14 Apr 2024 18:34:20 +0000 (14 14:34 -0400)
last refreshSat, 27 Apr 2024 09:32:54 +0000 (27 11:32 +0200)
content tags
add:
README.md

C++ Core Guidelines

"Within C++ is a smaller, simpler, safer language struggling to get out." -- Bjarne Stroustrup

The C++ Core Guidelines are a collaborative effort led by Bjarne Stroustrup, much like the C++ language itself. They are the result of many person-years of discussion and design across a number of organizations. Their design encourages general applicability and broad adoption but they can be freely copied and modified to meet your organization's needs.

Getting started

The guidelines themselves are found at CppCoreGuidelines. The document is in GH-flavored MarkDown. It is intentionally kept simple, mostly in ASCII, to allow automatic post-processing such as language translation and reformatting. The editors maintain one version formatted for browsing. Note that it is manually integrated and can be slightly older than the version in the master branch.

The Guidelines are a constantly evolving document without a strict "release" cadence. Bjarne Stroustrup periodically reviews the document and increments the version number in the introduction. Checkins that increment the version number are tagged in git.

Many of the guidelines make use of the header-only Guidelines Support Library. One implementation is available at GSL: Guidelines Support Library.

Background and scope

The aim of the guidelines is to help people to use modern C++ effectively. By "modern C++" we mean C++11 and newer. In other words, what would you like your code to look like in 5 years' time, given that you can start now? In 10 years' time?

The guidelines are focused on relatively higher-level issues, such as interfaces, resource management, memory management, and concurrency. Such rules affect application architecture and library design. Following the rules will lead to code that is statically type-safe, has no resource leaks, and catches many more programming logic errors than is common in code today. And it will run fast -- you can afford to do things right.

We are less concerned with low-level issues, such as naming conventions and indentation style. However, no topic that can help a programmer is out of bounds.

Our initial set of rules emphasizes safety (of various forms) and simplicity. They may very well be too strict. We expect to have to introduce more exceptions to better accommodate real-world needs. We also need more rules.

You will find some of the rules contrary to your expectations or even contrary to your experience. If we haven't suggested that you change your coding style in any way, we have failed! Please try to verify or disprove rules! In particular, we'd really like to have some of our rules backed up with measurements or better examples.

You will find some of the rules obvious or even trivial. Please remember that one purpose of a guideline is to help someone who is less experienced or coming from a different background or language to get up to speed.

The rules are designed to be supported by an analysis tool. Violations of rules will be flagged with references (or links) to the relevant rule. We do not expect you to memorize all the rules before trying to write code.

The rules are meant for gradual introduction into a code base. We plan to build tools for that and hope others will too.

Contributions and LICENSE

Comments and suggestions for improvements are most welcome. We plan to modify and extend this document as our understanding improves and the language and the set of available libraries improve. More details are found at CONTRIBUTING and LICENSE.

Thanks to DigitalOcean for hosting the Standard C++ Foundation website.

shortlog
12 days ago Herb SutterAdd note about pointerlike indirections, and remove... master
2024-04-11 Herb SutterAdd "take a copy for immediate local use" case to F...
2024-04-11 Paul JansenRemoved confusing comments (#2076) (#2179)
2024-04-11 Jan SchultkeImprove reasoning and examples for F.48 (#2100)
2024-04-04 1024R.3: Fill in placeholder link (#2173)
2024-02-15 Herb SutterMake `suppress` tag a string literal, closes #2042
2024-02-15 Herb SutterRevert adding short anchors, and keep fixes to avoid...
2024-02-15 Herb SutterAdd `#pNN` anchors for P section
2024-01-25 Jan SchultkeF.21 Don't return tuples (#2166)
2024-01-22 Herb SutterFix spell check regression
2024-01-22 Sergey Zubkovfix CI
2024-01-18 Herb SutterFix F.27 example, closes #2171
2024-01-18 Jan Schultke#1191 replace member variable with data member (#2087)
2024-01-18 Jan Schultkefix missing forward for function object parameter ...
2024-01-18 1024added missing title to GSL.owner link (#2156)
2024-01-18 Amir LivnehFix typos (#2158)
...
tags
6 years ago v0.8
7 years ago v0.7 Adding tag for 0.7
7 years ago v0.6 Adding tag for v0.6
7 years ago v0.1 Adding tag for v0.1
heads
12 days ago master
2 months ago gh-pages
3 months ago 2170-hs
2 years ago concrete-terminology
3 years ago cast-to-void-cleanup
3 years ago string_span-excision
4 years ago For-1446
4 years ago es23-updates
5 years ago neilmacintosh-ES70-fix
6 years ago hs-index
6 years ago travis-errors
7 years ago t84-example
7 years ago revert-825-interfaces_non_trivial_fixes
8 years ago H1