const と constexpr の違い2023年12月27日 14時14分42秒

最近、C++ の利用頻度が落ちたので、あれこれ忘れがち。

What's the difference between constexpr and const? にある。

簡単にまとめ直すと、const は不変定数の定義に使う。constexpr はコンパイラへのヒント。コンパイル時に値を求められるのを宣言する為に用いる。