5

Can the ternary (conditional) operator be used as an analogous to constexpr if(), introduced in C++17?

I would like to add some conditionality to member variables initialization in a template. Would the following expression resolve at compile time or runtime? If so, is there any other operator that resolves at compile time such that template specialisation can be avoided?

template<int a>
struct hello {
    constexpr static int n = (a != 0) ? 10 : 20;
}
EmVee
  • 81
  • 6

2 Answers2

7

It depends on what you mean by "analogous to constexpr if()". if constexpr requires that the condition is a constant expression. It also has certain privileges in template code to discard the branches not taken.

?: does not have that functionality.

However ?: can appear in constant expressions just fine, and it always could. It doesn't make an expression non-constant.

Nicol Bolas
  • 449,505
  • 63
  • 781
  • 982
2

Yes, it absolutely can and in fact it could already be used in C++11 before the introduction of if constexpr, and even before C++11 in constant expressions, such as the one in your question.

Konrad Rudolph
  • 530,221
  • 131
  • 937
  • 1,214