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

c++模板函数

时间:2015-04-07 19:37:06      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

#pragma once


class test
{
public:

 
 template <class T> void TestStr(T tt);

};

 

 

 

#include "StdAfx.h"
#include "test.h"

template <class T>
void test::TestStr(T tt)
{
 int ii=tt;

}

c++模板函数

标签:

原文地址:http://www.cnblogs.com/ike_li/p/4398983.html

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