我四处看看如何制作一个查找表,并找到了简单而优雅的答案。
我不想扣线,所以我想提出一个新的问题。当试图在VS2015中编译这个答案时,我会得到以下错误:
template<int N>
struct Table
{
constexpr Table() : values()
{
// C3538 auto must always deduce the same type
// C3250 i declaration is not allowed in constexpr body
// C3249 illegal statement for sub-