C++ function template instance

參考:http://www.learncpp.com/cpp-tutorial/132-function-template-instances/函數

 1 #include <stdio.h>
 2 
 3 template<typename T>
 4 auto foo(T arg){
 5     return ++arg;
 6 }
 7 
 8 int main()
 9 {
10     auto p = (int(*)(int)) &foo;
11 
12     printf("%d\n",p(5));
13 }

這種模板實例化的方法,我是第一次見。把模板取地址,強制轉換爲函數指針。spa

相關文章
相關標籤/搜索