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

时间:2023-03-10 06:06:50
Part-Eight 模板与群体数据的组织

1.方法模板

#include<iostream>
using namespace std;
template<typename T>
void outputArray(const T*array,int count)
{
for(int i=;i<count;i++)
{
cout<<array[i]<<" ";
}
cout<<endl;
}
int main()
{
const int A_COUNT=,B_COUNT=,C_COUNT=;
int a[A_COUNT]={,,,,,,,};
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 ;
}

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

2.

3.

4.

5.

6.

7.

8.

9.

10.

11.

12.