c++模板類應用樣本1

來源:互聯網
上載者:User

函數模板應用樣本

//test.h

template <typename M,typename N>
M add(M a,N b)
{
 return a+b;
}

//test.cpp

#include <iostream>
#include "test.h"
using namespace std;
void main()
{
 int a=15;
 float d=-2.8f;
 double b=12.5;
 char c='a';
 cout<<add(a,a)<<"/n";
 cout<<add(d,a)<<"/n";
 cout<<add(b,a)<<"/n";
 cout<<add(b,d)<<"/n";
 cout<<add(b,b)<<"/n";
 cout<<add(c,a)<<"/n";
}

運行結果

 

類模板應用樣本

 

//test.h

template <typename AType>
class array
{
 public:
  array(int size);
  ~array()
  {
   delete[]a;
  }
  AType&operator[](int i);
 private:
  int length;
  AType*a;
};
template<typename AType>
array<AType>::array(int size)
{
 register int i;
 length=size;
 a=new AType[size];
 if (!a)
 {
  cout<<"can't allocate array./n";
  exit(1);
 }
 for (i=0;i<size;i++)
 {
  a[i]=0;
 }
}
template<typename AType>
AType &array<AType>::operator[](int i)
{
 if (i<0||i>length-1)
 {
  cout<<"/nIndex value of";
  cout<<i<<"is out-of-bounds./n";
  exit(2);
 }
 return a[i];
}

//test.cpp

#include <iostream>
#include "test.h"
using namespace std;
void main()
{
 array<int>intob(10);
 array<double>doubleob(10);
 cout<<"Interger array:";
 for (int i=0;i<10;i++)
 {
  intob[i]=i+1;
 }
 for (int i=0;i<10;i++)
 {
  cout<<intob[i]<<" ";
 }
 cout<<endl;
 cout<<"Double array:";
 cout.precision(4);
 for (int i=0;i<5;i++)
 {
  doubleob[i]=(double)(i+1)*3.14;
 }
 for (int i=0;i<5;i++)
 {
  cout<<doubleob[i]<<" ";
 }
 cout<<endl;
 intob[20]=30;
 doubleob[20]=89.5;
}

運行結果

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.