/**
*cppTest-3.5:模板类
@@在类模板中可以声明三种友元函数:
(1)一般的友元函数。这种友元函数中不使用任何类模板中的类型参数表列中的参数。(即不使用类型模板的友元函数)
(2)封闭型类模板友元函数。(使用类的类型模板的友元函数)
(3)开放型类模板友元函数。(不使用类的类型模板而使用自己定义的类型模板的友元函数)
*author 炜sama
*/
#include
#include
const int ArraySize=8;
//与模板函数的用法差不多,template放在类定义前,
template
//int i;//中间不能插入任何代码!
class Array{
friend ostream& operator<<(ostream& os,Array& array);
private:
Type *element;
int size;
public:
Array(const int s){
size=s;
element=new Type[size];
for(int i=0;i
friend void print(T t);
};
template//定义类里面声明的模板函数时这里还要再次声明这个类型Type说明!不然函数不知道Type是神马~
Type& Array::operator[](const int index)
{
return element[index];
}
template
void Array::operator=(Type temp)
{
for(int i=0;i
ostream& operator<<(ostream& os,Array& array)
{
for(int i=0;i
void print(T t){
cout< IntObj(ArraySize);
Array DoubleObj(ArraySize);
Array CharObj(ArraySize);
IntObj=518;
DoubleObj=3.14159;
CharObj='A';
cout<<"The integer type class:"<