在以下示例中,我在模板函数中使用 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/