码迷,mamicode.com
首页 > 编程语言 > 详细

C++ function template instance

时间:2018-04-10 15:26:36      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:col   cti   强制   www.   type   turn   style   www   实例化   

参考: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 }

这种模板实例化的方法,我是第一次见。把模板取地址,强制转换为函数指针。

C++ function template instance

标签:col   cti   强制   www.   type   turn   style   www   实例化   

原文地址:https://www.cnblogs.com/thomas76/p/8778475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!