I keep trying different search terms for this question and I'm just finding noise on both Google and stackoverflow. If I write code using C++'s standard library (std), is it all basically guaranteed to compile for Windows, Mac, and Linux (and hopefully work as intended)?
|
|
The standard defines what it means to be a C++ compiler, and all compilers claiming to be C++ should conform to the standard; any that don't can be considered buggy. All of the major compilers try their best to be conforming. There are two standards to be concerned with here, C++03 and C++11. Since C++11 is new there are some features that won't be implemented in every compiler. If you stick to C++03 you should find wide conformity. Everything in the |
|||
|
|
|
Code is guaranteed to compatible across all standards-compliant compilers/platforms, but it is important to note that the ABI is not, i.e. you may not assume it safe to link across binaries created from different compilers/versions/platforms. In practice, this means don't pass STL objects like |
|||||||||||||
|