标签: c++ function templates pointers c++11
如何在不创建结构的情况下创建它?
template <class T> typedef bool (* FunctionPointer)(T*, T*);
答案 0 :(得分:4)
使用using:
using
template <class T> using FunctionPointer = bool (*)(T*, T*);
Live example