我想将功能指针数组中的功能指针作为模板参数传递。即使Intellisense抱怨有些问题,我的代码似乎还是使用MSVC编译的。gcc和clang均无法编译代码。
考虑以下示例:
static void test() {}
using FunctionPointer = void(*)();
static constexpr FunctionPointer functions[] = { test };
template <FunctionPointer function>
static void wrapper_function()
{
function();
}
int main()
{
test(); // OK
functions[0](); // OK
wrapper_function<test>(); // OK
wrapper_function<functions[0]>(); // Error?
}
MSVC编译代码,但是Intellisense给出以下错误:invalid nontype template argument of type "const FunctionPointer"
gcc无法通过以下消息进行编译:
<source>: In function 'int main()':
<source>:19:33: error: no matching function for call to 'wrapper_function<functions[0]>()'
19 | wrapper_function<functions[0]>(); // Error?
| ^
<source>:8:13: note: candidate: 'template<void (* function)()> void wrapper_function()'
8 | static void wrapper_function()
| ^~~~~~~~~~~~~~~~
<source>:8:13: note: template argument deduction/substitution failed:
<source>:19:30: error: '(FunctionPointer)functions[0]' is not a valid template argument for type 'void (*)()'
19 | wrapper_function<functions[0]>(); // Error?
| ~~~~~~~~~~~^
<source>:19:30: note: it must be the address of a function with external linkage
clang无法通过以下消息进行编译:
<source>:19:2: error: no matching function for call to 'wrapper_function'
wrapper_function<functions[0]>(); // Error?
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<source>:8:13: note: candidate template ignored: invalid explicitly-specified argument for template parameter 'function'
static void wrapper_function()
^
1 error generated.
问题:
是wrapper_function<functions[0]>();
有效还是无效?
如果不是,我可以做些什么functions[0]
作为模板参数传递给wrapper_function
吗?我的目标是在编译时使用content构造一个新的函数指针数组{ wrapper_function<functions[0]>, ..., wrapper_function<functions[std::size(functions) - 1]> }
。
wrapper_function<decltype(functions[0])>()
不编译。