C++: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
=C++=
=C++=


C++ is a general-purpose, high-level, multi-paradigm programming language created by Bjarne Stroustrup at Bell Labs in 1979 by extending the C programming language. C++ is now represented with a number of ISO standards corresponding to the years 1998, 2003 (minor release), 2011, and 2014 usually referred to as C++98, C++03, C++11, and C++14. (The next C++ standard will likely become official in 2017 and for this reason is usually referred to as C++17.) If you are new to C++ or wish to read an overview of the language and/or how each ISO standard impacted it, check out the following Wikipedia links:
C++ is a general-purpose, high-level, multi-paradigm programming language created by Bjarne Stroustrup at Bell Labs in 1979 by extending the C programming language. C++ is now represented by a number of ISO standards corresponding to the years 1998, 2003, 2011, and 2014 usually referred to as C++98, C++03, C++11, and C++14. (The next C++ standard will likely become official in 2017 and for this reason is usually referred to as C++17.) If you are new to C++ or wish to read an overview of the language and/or how each ISO standard impacted C++, check out the following Wikipedia links:


# [https://en.wikipedia.org/wiki/C%2B%2B C++], i.e., the language, history, and C++98.
# [https://en.wikipedia.org/wiki/C%2B%2B C++], i.e., the language, history, and C++98.
# [https://en.wikipedia.org/wiki/C%2B%2B03 C++03]: Minor release (mostly bug fixes). Mandates that std::vector stores its elements contiguously.
# [https://en.wikipedia.org/wiki/C%2B%2B03 C++03]: Minor release (mostly bug fixes). Mandates that std::vector stores its elements contiguously.
# [https://en.wikipedia.org/wiki/C%2B%2B11 C++11]: Major release adding many new language and library features including concurrency (e.g., threads, atomics, compare-and-swap). See the link for details.
# [https://en.wikipedia.org/wiki/C%2B%2B11 C++11]: Major release adding many new language and library features including concurrency (e.g., threads, atomics, compare-and-swap).
# [https://en.wikipedia.org/wiki/C%2B%2B14 C++14]: While mostly bug fixes and small improvements, this version simplifies/generalizes the use of a number of constructs including constexpr, auto, lambdas (e.g., move capture).
# [https://en.wikipedia.org/wiki/C%2B%2B14 C++14]: While mostly bug fixes and small improvements, this version simplifies/generalizes the use of a number of constructs including constexpr, auto, lambdas (e.g., move capture).
# [https://en.wikipedia.org/wiki/C%2B%2B17 C++17]: Soon-to-be-major release. Amongst other items, support for parallel STL algorithms will likely be included.
# [https://en.wikipedia.org/wiki/C%2B%2B17 C++17]: Soon-to-be-major release. Amongst other items, support for parallel STL algorithms will likely be included.


The most definitive, up-to-date, free online (wiki) reference for C++ (and its C Standard Library subset) is [http://en.cppreference.com/w/ cppreference.com]. This site also includes example code and tags definitions with the C++ standards to which they are defined / changed. Should you have a need to refer to the actual ISO standard document for C++, you can obtain a link to the last draft (which may well have errors in it!) before each ISO C++ standard release in that page's reference section. (If you need the official document, you may purchase it from [http://www.scc.ca/ Standards Council of Canada].)  
A definitive, up-to-date, free online wiki reference for C++ (and its C Standard Library subset) is [http://en.cppreference.com/w/ cppreference.com]. Should you have a need to refer to an actual ISO standard document for C++, you can obtain a link to the last draft (which may well have errors in it) before each ISO C++ standard release in the aforementioned Wikipedia pages' reference section. (If you need the official document, you may purchase it from [http://www.scc.ca/ Standards Council of Canada].)  


ISO standards typically rely on other standards and C++ is no exception. The ISO C++ standards rely on the ISO C standards definitions (per the text, restrictions, etc. in the ISO C++ standard). For this reason it is useful to be aware of the various C standards that the ISO C++ standards refer to. C++98 relies on C90; C++11 and C++14 were standardized at the same time as C11 to ensure clean and clear definitions with respect to concurrency and memory models.
ISO standards typically rely on other standards and C++ is no exception. The ISO C++ standards rely on the ISO C standards definitions (per the text, restrictions, etc. in the ISO C++ standard). Consequently, if you require the ISO C++ standard document you will likely also require the ISO C standard document it relies on.


=Well-Defined Concurrency and Memory Models=
=Well-Defined Concurrency and Memory Models=


It is important to realize that prior to 2011 ISO C++ and ISO C standards these languages had no definitions of concurrency and corresponding memory model behaviour. In pre-C++11 / pre-C11 code, while most of the time the "right" thing is done, understand there are no guarantees with the language specifications (and therefore compiler implementations of such) of the ordering of reads and writes under concurrency. Ideally newly developed C++ and C concurrent code is explicitly compiled under C++11 and/or C11 settings to have and leverage well-defined concurrency and memory models' definitions. All concurrency and memory models in ISO C++ have a corresponding equivalent in ISO C. That said, most persons prefer easier-to-write-and-understand generic/object-based code, and would therefore prefer using C++ over C for concurrent.
Prior to 2011 the ISO C++ and ISO C standards had no definitions of concurrency and memory models in them, thus, pre-C++11 / pre-C11 code there are no guarantees given concerning the ordering of reads and writes under concurrency. (To have such guarantees compile C++ and C code as C++11 and C11 code.)
 
Prior to C++11 and C11, one would have used the pthreads / Windows threading APIs to implement concurrency. Although many compilers will implement C++11 and C11 threads, etc. in terms of pthreads / Windows threading APIs, using the ISO C++11 and ISO C11 definitions is better for two reasons:
 
* the code is compiler and platform independent, and,
* C++11 and C11 have well-defined memory models --continuing to compile code using pre-C++11 and/or pre-C11 compiler language flags implies that no memory models are formally in effect (i.e., one is likely relying on undefined behaviour).


=Compiler Support=
=Compiler Support=
==Language Features==
==Language Features==
 
Various compilers implement various language features differently. Unfortunately a number of compiler releases only partially implement a specific ISO C++ standard. This can sometimes make it frustrating when compiling code with a compiler that does not yet implement a specific language feature. Fortunately there is a wiki page covering virtually all major C++ compilers and [http://en.cppreference.com/w/cpp/compiler_support listing the earlier compiler version implementing specific language features] at cppreference.com. This page also provides reference links to each compiler's web site concerning the details of such.
Various compilers implement various language features differently. Unfortunately a number of compilers only partially implement some of the ISO standard language feature requirements with each release of their compilers. This can sometimes make it frustrating when compiling code with a new compiler that does not yet implement a specific language feature. Fortunately there is a wiki page covering virtually all major C++ compilers and [http://en.cppreference.com/w/cpp/compiler_support which compiler versions implement specific language features] at cppreference.com. This page also provide links to each compiler's web site concerning the details of such.


==Standard Library Implementation==
==Standard Library Implementation==


It is important to realize that many C++ compilers under Linux do not actually provide their own implementation of the C++ Standard Library. Instead these compilers use one that is installed on the system. Typically this implies that libstdc++, which is distributed with GCC, is being used. This is important because outside of the C++ language itself nearly everything one uses is in the Standard Library, e.g., containers, algorithms, iostream, threads, random numbers, etc.  
It is important to realize that many C++ compilers under Linux do not actually provide their own implementation of the C++ Standard Library under certain operating systems (especially Linux). Instead these compilers will use one that is normally installed on the system. Typically this implies that libstdc++, which is distributed with GCC, is used.


'''NOTE:''' While you need not worry about this, this is the reason C++ compilers other than GCC on systems across Compute Canada must be configured by the  administrators to use the correct version of libstdc++ as several versions of GCC (and therefore libstdc++) are typically installed on the system. If such is set improperly, then there may be issues. This is also a reason why users should '''never''' hard-code explicit paths to administrator-installed libraries to, for example, compile software.
'''NOTE:''' While you need not worry about this, this is a reason C++ compilers other than GCC on systems across Compute Canada must be configured by the  administrators to use a correct version of libstdc++ as several versions of GCC (and therefore libstdc++) are typically installed on any system. If such is set improperly, then there may be issues. This is also a reason why users should '''never''' hard-code paths to administrator-installed libraries in order to compile software.


Nicely the GCC documentation has a section which details [https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html Standard Library components are supported in libstdc++].
The GCC documentation has a section which details [https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html Standard Library components are supported in libstdc++].


=Pitfalls=
=Pitfalls=


==The <tt>volatile</tt> Keyword==
==The <tt>volatile</tt> Keyword==
The reader should note that <tt>volatile</tt> in C++ has a very specific meaning, e.g., see [http://en.cppreference.com/w/cpp/language/cv this page]. Consequently needing to use <tt>volatile</tt> in C++ code is a rare event.


The reader should note that <tt>volatile</tt> in C++ and C has a very specific meaning, e.g., see [http://en.cppreference.com/w/cpp/language/cv this page]. Consequently using <tt>volatile</tt> in C/C++ code is a rare event --typically limited to certain kinds of low-level code.
Misuse of <tt>volatile</tt> might arise from users of the Java programming language which uses the <tt>volatile</tt> keyword for concurrency. Java's <tt>volatile</tt> has a totally different meaning from <tt>volatile</tt> in C++. Java's <tt>volatile</tt> corresponds to using <tt>std::atomic&lt;T&gt;</tt> for some type <tt>T</tt> or <tt>std::atomic_*</tt> (where '*' corresponds to a fundamental type name such as <tt>int</tt>) in C++.
 
Misuse of <tt>volatile</tt> might arise because the Java programming language uses the <tt>volatile</tt> keyword as well. Unfortunately, Java's <tt>volatile</tt> has a totally different meaning from <tt>volatile</tt> in C or C++. Specifically, Java's <tt>volatile</tt> keyword in C++ would correspond to using <tt>std::atomic&lt;T&gt;</tt> for some type <tt>T</tt> or <tt>std::atomic_*</tt> (i.e., the C library equivalents where '*' corresponds to a fundamental type name such as <tt>int</tt>).


'''NOTE:''' It is unlikely you will ever use the <tt>volatile</tt> keyword in any of your C++ code. In pre-ISO C++11 concurrent code you might need to use <tt>volatile</tt> but that would be a very rare event. Instead of <tt>volatile</tt>, always use the appropriate mutex, atomic, etc. features of the library you are using (e.g., pthreads, the C++ Standard Library).
'''NOTE:''' It is unlikely you will ever use the <tt>volatile</tt> keyword in any of your C++ code. In pre-ISO C++11 concurrent code you might need to use <tt>volatile</tt> but that still would be a rare event. Instead of <tt>volatile</tt>, always use the appropriate mutex, atomic, etc. features of the library you are using (e.g., pthreads, the C++ Standard Library).


==Compilers==
==Compilers==

Revision as of 21:22, 17 November 2016

C++[edit]

C++ is a general-purpose, high-level, multi-paradigm programming language created by Bjarne Stroustrup at Bell Labs in 1979 by extending the C programming language. C++ is now represented by a number of ISO standards corresponding to the years 1998, 2003, 2011, and 2014 usually referred to as C++98, C++03, C++11, and C++14. (The next C++ standard will likely become official in 2017 and for this reason is usually referred to as C++17.) If you are new to C++ or wish to read an overview of the language and/or how each ISO standard impacted C++, check out the following Wikipedia links:

  1. C++, i.e., the language, history, and C++98.
  2. C++03: Minor release (mostly bug fixes). Mandates that std::vector stores its elements contiguously.
  3. C++11: Major release adding many new language and library features including concurrency (e.g., threads, atomics, compare-and-swap).
  4. C++14: While mostly bug fixes and small improvements, this version simplifies/generalizes the use of a number of constructs including constexpr, auto, lambdas (e.g., move capture).
  5. C++17: Soon-to-be-major release. Amongst other items, support for parallel STL algorithms will likely be included.

A definitive, up-to-date, free online wiki reference for C++ (and its C Standard Library subset) is cppreference.com. Should you have a need to refer to an actual ISO standard document for C++, you can obtain a link to the last draft (which may well have errors in it) before each ISO C++ standard release in the aforementioned Wikipedia pages' reference section. (If you need the official document, you may purchase it from Standards Council of Canada.)

ISO standards typically rely on other standards and C++ is no exception. The ISO C++ standards rely on the ISO C standards definitions (per the text, restrictions, etc. in the ISO C++ standard). Consequently, if you require the ISO C++ standard document you will likely also require the ISO C standard document it relies on.

Well-Defined Concurrency and Memory Models[edit]

Prior to 2011 the ISO C++ and ISO C standards had no definitions of concurrency and memory models in them, thus, pre-C++11 / pre-C11 code there are no guarantees given concerning the ordering of reads and writes under concurrency. (To have such guarantees compile C++ and C code as C++11 and C11 code.)

Compiler Support[edit]

Language Features[edit]

Various compilers implement various language features differently. Unfortunately a number of compiler releases only partially implement a specific ISO C++ standard. This can sometimes make it frustrating when compiling code with a compiler that does not yet implement a specific language feature. Fortunately there is a wiki page covering virtually all major C++ compilers and listing the earlier compiler version implementing specific language features at cppreference.com. This page also provides reference links to each compiler's web site concerning the details of such.

Standard Library Implementation[edit]

It is important to realize that many C++ compilers under Linux do not actually provide their own implementation of the C++ Standard Library under certain operating systems (especially Linux). Instead these compilers will use one that is normally installed on the system. Typically this implies that libstdc++, which is distributed with GCC, is used.

NOTE: While you need not worry about this, this is a reason C++ compilers other than GCC on systems across Compute Canada must be configured by the administrators to use a correct version of libstdc++ as several versions of GCC (and therefore libstdc++) are typically installed on any system. If such is set improperly, then there may be issues. This is also a reason why users should never hard-code paths to administrator-installed libraries in order to compile software.

The GCC documentation has a section which details Standard Library components are supported in libstdc++.

Pitfalls[edit]

The volatile Keyword[edit]

The reader should note that volatile in C++ has a very specific meaning, e.g., see this page. Consequently needing to use volatile in C++ code is a rare event.

Misuse of volatile might arise from users of the Java programming language which uses the volatile keyword for concurrency. Java's volatile has a totally different meaning from volatile in C++. Java's volatile corresponds to using std::atomic<T> for some type T or std::atomic_* (where '*' corresponds to a fundamental type name such as int) in C++.

NOTE: It is unlikely you will ever use the volatile keyword in any of your C++ code. In pre-ISO C++11 concurrent code you might need to use volatile but that still would be a rare event. Instead of volatile, always use the appropriate mutex, atomic, etc. features of the library you are using (e.g., pthreads, the C++ Standard Library).

Compilers[edit]

GCC[edit]

The GCC compiler's -O3 option includes possibly unsafe optimizations for some types of code (e.g., code relying on aliasing). If unsure, compile and optimize code using the -O2 option instead. If you've more time, read the man page (e.g., man gcc or man g++) and unset the appropriate options by searching for "-O3" to see which options are turned on and turn off the settings that are not safe.

Intel[edit]

Intel C/C++ compilers may default to using possibly unsafe optimizations for floating-point operations. Users using the Intel compilers should read the Intel man pages (e.g., man icc and man icpc) and are recommended to use one of two options, -fp-model precise or -fp-model source, for ANSI/ISO/IEEE standards-compliant floating-point support.