f1402.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f1402.cpp
- // template parameter match problem
- //=====================================
- template<typename T>
- void swap(T& a, T& b){
- T temp=a; a=b; b=temp;
- }//------------------------------------
- int add(double a, double b){
- return a+b;
- }//------------------------------------
- int main(){
- int ia=3;
- double db=5.0;
- char s1[]="good", s2[]="better";
- int x = add(ia, db); // ok
- swap(ia, db); // error
- swap(s1, s2); // error
- }//====================================