gpt4 book ai didi

c++ - 是否可以在编译时生成一个字符串?

转载 作者:太空狗 更新时间:2023-10-29 20:59:27 25 4
gpt4 key购买 nike

在下面的示例中,我在模板函数中使用 snprintf 来创建一个包含模板参数 N 值的字符串。我想知道是否有办法在编译时生成此字符串。

template <unsigned N>
void test()
{
char str[8];
snprintf(str, 8, "{%d}", N);
}

最佳答案

经过更多的挖掘之后,我在 SO 上发现了这个:https://stackoverflow.com/a/24000041/897778

适应我的用例我得到:

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

template<unsigned... digits>
const 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 / 10, num % 10>
{};

template <unsigned N>
void test()
{
const char* str = num_to_string<N>::value;
}

boost::mpl 也有人建议,但这段代码似乎更简单。

关于c++ - 是否可以在编译时生成一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24566547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com