f1402.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f1402.cpp
  3. // template parameter match problem
  4. //=====================================
  5. template<typename T>
  6. void swap(T& a, T& b){
  7.   T temp=a; a=b; b=temp;
  8. }//------------------------------------
  9. int add(double a, double b){
  10.   return a+b;
  11. }//------------------------------------
  12. int main(){
  13.   int ia=3;
  14.   double db=5.0;
  15.   char s1[]="good", s2[]="better";
  16.   int x = add(ia, db);  // ok
  17.   swap(ia, db);          // error
  18.   swap(s1, s2);          // error
  19. }//====================================
  20.