Best alternative to a typedef for a function template?

前端 未结 5 1562
你的背包
你的背包 2021-02-07 03:59

What I\'d like to do is something like this:

template 
DataType myFunc(DataType in)
{
   ...
}

typedef myFunc myFunc_i;

myFunc         


        
5条回答
  •  终归单人心
    2021-02-07 04:47

    Use decltype:

    template 
    DataType myFunc(DataType in)
    {
       ...
    }
    
    using myFunc_i = decltype(myFunc(0));
    
    myFunc_i(37);
    

提交回复
热议问题