使用constexpr将数字转换为字符串文字

时间:2014-06-02 16:53:18

标签: c++ c++11

我正在寻找一种在编译时将数字转换为字符串文字的方法。看起来应该是这样的:

template <unsigned num>
struct num_to_string {
    constexpr static char value[] = /* ... magic goes here ... */;
};

因此num_to_string<5>::value等于"5"{'5', '\0'}

这对于在编译时从一些其他constexpr数字计算结果的数字生成字符串非常有用。

另请注意,我只对unsigned数字感兴趣,因为这应该更容易处理。签名版本的奖励积分:)

编辑: 请注意,这与C++ convert integer to string at compile time类似,但不一样。在这里,我明确地想要使用constexpr而不是宏来帮助进行泛型编程。

1 个答案:

答案 0 :(得分:28)

救援的变量模板。 :)

namespace detail
{
    template<unsigned... digits>
    struct to_chars { static const char value[]; };

    template<unsigned... digits>
    constexpr char to_chars<digits...>::value[] = {('0' + digits)..., 0};

    template<unsigned rem, unsigned... digits>
    struct explode : explode<rem / 10, rem % 10, digits...> {};

    template<unsigned... digits>
    struct explode<0, digits...> : to_chars<digits...> {};
}

template<unsigned num>
struct num_to_string : detail::explode<num> {};

与往常一样,这里显示live example on Coliru显示用法和(相关)生成的程序集。


很容易采用这种方法来支持负数。这是一个更通用的表单,要求用户输入整数的类型:

namespace detail
{
    template<uint8_t... digits> struct positive_to_chars { static const char value[]; };
    template<uint8_t... digits> constexpr char positive_to_chars<digits...>::value[] = {('0' + digits)..., 0};

    template<uint8_t... digits> struct negative_to_chars { static const char value[]; };
    template<uint8_t... digits> constexpr char negative_to_chars<digits...>::value[] = {'-', ('0' + digits)..., 0};

    template<bool neg, uint8_t... digits>
    struct to_chars : positive_to_chars<digits...> {};

    template<uint8_t... digits>
    struct to_chars<true, digits...> : negative_to_chars<digits...> {};

    template<bool neg, uintmax_t rem, uint8_t... digits>
    struct explode : explode<neg, rem / 10, rem % 10, digits...> {};

    template<bool neg, uint8_t... digits>
    struct explode<neg, 0, digits...> : to_chars<neg, digits...> {};

    template<typename T>
    constexpr uintmax_t cabs(T num) { return (num < 0) ? -num : num; }
}

template<typename Integer, Integer num>
struct string_from : detail::explode<(num < 0), detail::cabs(num)> {};

它的用法如下:

string_from<signed, -1>::value

live example on Coliru中所示。