string类
如何用模板函数的方法打印出字符串
如何用模板函数的方法打印出字符串
2017-01-14
与你上述的打印的double类型相识,只是将模板参数改成字符而言,另外要将Ksize作为模板参数加入,具体代码如下:
#include<iostream>
#include<string>
#include<stdlib.h>
using namespace std;
template <typename T,int KSize>
void display(T a)
{
for (int i = 0; i < KSize; i++)
{
cout << a << endl;
}
}
int main()
{
display<string, 5>("慕课网");
system("pause");
return 0;
}
举报