我正在尝试根据返回类型返回对数组中值的引用。我在某处读到 C++ 不支持使用返回类型进行重载,但可以使用专门的模板。
我试过但失败了..你能帮我弄清楚我做错了什么吗?
这是我认为我应该做的:
uint16_t var_uint16[10];
float var_float[10];
template<class T>
T& Memory(int index) { }
template<>
uint16_t& Memory<uint16_t>(int index) { return var_uint16[index]; }
template<>
float& Memory<float>(int index) { return var_float[index]; }
并这样称呼它:
float a = 10.0;
Memory(1) = a; // Should set var_float[1] to 10.0
上面的代码产生以下错误:
no matching function for call to 'Memory(int)'
candidate is:
template<class T> T& Memory(int)
template argument deduction/substitution failed:
couldn't deduce template parameter 'T'