本文介绍了了解“模板参数无效”错误信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
考虑代码:
c>What does it mean? Why can I specialize on decltype(Functor().Invoke()), but can not on decltype(Functor().Invoke<void>())?
推荐答案
您需要使用 code>因为解析模糊:
You need to qualify it with template because of parsing ambiguities:
decltype(Functor().template Invoke<void>()) ^^^^^^^^相关:
此外,考虑使用 std :: declval ,而不是 Functor()构造函数。
Also, consider using std::declval rather than Functor() constructor.
这篇关于了解“模板参数无效”错误信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!