假设我想编写一个执行整数平方根的C++ 1y/14 constexpr函数:
constexpr int constexpr_isqrt(int x);
我要执行健全性检查,以确保
x
为非负数:constexpr int constexpr_isqrt(int x)
{
if (x < 0)
???
...
}
我应该在上面的
???
中写什么?理想情况下,如果函数在常量上下文中求值,则应导致编译时错误,并且如果在运行时以运行时错误(例如,异常终止或抛出异常)进行调用。
最佳答案
您很幸运,有办法!即使在C++ 11中!使用异常(exception):
#include <iostream>
#include <stdexcept>
constexpr int foo(int a)
{
return (a >= 0) ? a : throw std::invalid_argument("Negative!");
}
template <int n>
struct Foo
{
};
int main()
{
Foo<foo(1)> f1(); // fine, guaranteed compile time
Foo<foo(-1)> f2(); // bad, compile time error
foo(1); // fine, not necessarily at compile time
try
{
foo(-1); // fine, definitively not at compile time
}
catch ( ... )
{
}
return 0;
}
演示:http://ideone.com/EMxe2K
对于不允许的情况,GCC有一个很好的错误消息:
prog.cpp: In function ‘int main()’:
prog.cpp:17:12: in constexpr expansion of ‘foo(-1)’
prog.cpp:6:63: error: expression ‘<throw-expression>’ is not a constant-expression
return (a >= 0) ? a : throw std::invalid_argument("Negative!");
对于看起来像这样的C++ 1y constexpr函数
constexpr foo(int a)
{
if ( a < 0 )
{
// error!
}
++a;
//something else
return a;
}
您可以通过引入新功能来使用上述模式:
constexpr foo_positive(int a)
{
++a;
//something else
return a;
}
constexpr int foo(int a)
{
return (a >= 0) ? foo_positive(a) : throw std::invalid_argument("Negative!");
}
或者你只是写
constexpr foo(int a)
{
if ( a < 0 )
{
throw std::invalid_argument("Negative!");
}
++a;
//something else
return a;
}