Part-Eight 模板与群体数据的组织

1.方法模板

#include<iostream>
using namespace std;
template<typename T>
void outputArray(const T*array,int count)
{
    for(int i=0;i<count;i++)
    {
        cout<<array[i]<<" "; 
    }
    cout<<endl;
}
int main()
{
    const int A_COUNT=8,B_COUNT=8,C_COUNT=20;
    int a[A_COUNT]={1,2,3,4,5,6,7,8};
    double b[B_COUNT]={1.1,2.2,3.3,4.4,5.5,6.6,7.7,8.8};
    char c[C_COUNT]="Welcome to see you!";
    outputArray(a,A_COUNT);
    outputArray(b,B_COUNT);
    outputArray(c,C_COUNT); 
    return 0;
}

2.

3.

4.

5.

6.

7.

8.

9.

10.

11.

12.

作者:Glacier

-------------------------------------------

个性签名:向上吧少年,加油!

如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,感谢!

原文地址:https://www.cnblogs.com/wildness-priest/p/10714343.html