本文介绍了这可以与带有模板元编程的字符数组一起使用吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我编写了一系列模板,以基于多达32种数据类型填充32个字符串.是否可以在编译时进行计算?

我的假设是不,但想验证以防万一我错了.

生成具有3种数据类型的注册字符串的代码示例

 temp [0] = Char_Type <   T1  > ();
temp [1] = Char_Type <   T2  > ();
temp [2] = Char_Type <   T3  > ();
return temp; 
解决方案



I''ve written a series of templates to fill in a 32 character string based on up to 32 data types. Is it possible to compute this at compile time?

My assumption is no, but wanted to verify in case I was wrong.

Example of code to generate registration string with 3 data types

temp[0]=Char_Type<T1>();
temp[1]=Char_Type<T2>();
temp[2]=Char_Type<T3>();
return temp;
解决方案



这篇关于这可以与带有模板元编程的字符数组一起使用吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:41