40

C++1z 将引入“constexpr if”——一个 if 将根据条件删除其中一个分支。似乎合理且有用。

但是,没有 constexpr 关键字就不可能吗?我认为在编译期间,编译器应该知道在编译期间是否知道条件。如果是,即使是最基本的优化级别也应该删除不必要的分支。

例如(参见 Godbolt:https ://godbolt.org/g/IpY5y5 ):

int test() {
    const bool condition = true;
    if (condition) {
      return 0;
    } else {
      // optimized out even without "constexpr if"
      return 1;
    }
}

Godbolt explorer 显示,即使带有 -O0 的 gcc-4.4.7 也没有编译“return 1”,所以它实现了 constexpr if 所承诺的。显然,当条件是 constexpr 函数的结果时,这样的旧编译器将无法这样做,但事实仍然存在:现代编译器知道条件是否是 constexpr,并且不需要我明确地告诉它。

所以问题是:

为什么“constexpr if”中需要“constexpr”?

4

1 回答 1

55

这很容易通过一个例子来解释。考虑

struct Cat { void meow() { } };
struct Dog { void bark() { } };

template <typename T>
void pet(T x)
{
    if(std::is_same<T, Cat>{}){ x.meow(); }
    else if(std::is_same<T, Dog>{}){ x.bark(); }
}

调用

pet(Cat{});
pet(Dog{});

将触发编译错误wandbox 示例,因为if语句的两个分支都必须格式正确。

prog.cc:10:40: error: no member named 'bark' in 'Cat'
    else if(std::is_same<T, Dog>{}){ x.bark(); }
                                     ~ ^
prog.cc:15:5: note: in instantiation of function template specialization 'pet<Cat>' requested here
    pet(Cat{});
    ^
prog.cc:9:35: error: no member named 'meow' in 'Dog'
    if(std::is_same<T, Cat>{}){ x.meow(); }
                                ~ ^
prog.cc:16:5: note: in instantiation of function template specialization 'pet<Dog>' requested here
    pet(Dog{});
    ^

改用pet_if constexpr

template <typename T>
void pet(T x)
{
    if constexpr(std::is_same<T, Cat>{}){ x.meow(); }
    else if constexpr(std::is_same<T, Dog>{}){ x.bark(); }
}

只要求分支是可解析的——只有匹配条件的分支需要格式 正确wandbox 示例

片段

pet(Cat{});
pet(Dog{});

将按预期编译和工作。

于 2016-12-05T11:07:01.887 回答