Broad range of supported development languages and tools allows to transform software delivery practices.
The C++11 standard generalizes the concept of constant expressions and introduces a new keyword constexpr as a declaration specifier. A constant expression is an expression that can be evaluated at compile time by the compiler. The major benefits of this feature are as follows:
An object declaration with the constexpr specifier declares that object to be constant. The constexpr specifier can be applied only to the following contexts:
If you declare a function that is not a constructor with a constexpr specifier, then that function is a constexpr function. Similarly, if you declare a constructor with a constexpr specifier, then that constructor is a constexpr constructor.
With this feature, constant expressions can include calls to template and non-template constexpr functions, constexpr objects of class literal types, and references bound to const objects that are initialized with constant expressions.
Evaluations of floating-point operations at compile time use the default semantics of the -qfloat option.
Copy