我定义了以下数据类型:float、float4、float8、double、double4、int、int4、int8、long(64bit int)和 long4。假设我定义了以下函数:
void foo_float() {
float f;
int i;
...do something with f and i
}
void foo_float4() {
float4 f;
int4 i;
...do something with f and i
}
void foo_double4() {
double4 f;
int4 i;
...do something with f and i
}
说“用 f 和 i 做某事”的部分是相同的。所以我不想写重复的代码。我想改为做类似的事情:
<float, 4>foo()
这会生成函数:
void foo() {
float4 f;
int4 i;
...do something with f and i
}
有什么建议么?我可以用模板做到这一点吗?或者也许是定义语句和模板的组合?