简化示例代码:
#include <iostream>
template<typename T>
void func(T &x)
{
std::cout << "non-const " << x << std::endl;
}
template<typename T>
void func(const T &x)
{
std::cout << "const " << x << std::endl;
}
template<typename ...ARGS>
void proxy(ARGS ...args)
{
func(args...);
}
int main()
{
int i = 3;
func(i);
func(5);
func("blah");
proxy(i);
proxy(5);
proxy("blah");
}
预期输出:
non-const 3
const 5
const blah
non-const 3
const 5
const blah
实际输出:
non-const 3
const 5
const blah
non-const 3
non-const 5
non-const blah
因此const
,当通过可变参数模板时,函数参数的限定符会以某种方式丢失。为什么?我怎样才能防止这种情况?
PS:使用 GCC 4.5.1 和SUSE 11.4测试