f1403.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f1403.cpp
- // explicit cast for template type match
- //=====================================
- #include<iostream>
- //-------------------------------------
- template<typename T>
- T const& max(T const& a, T const& b){ // const reference type
- return a < b ? b : a;
- }//------------------------------------
- int main(){
- int ia=3;
- double db=6.7;
- std::cout<< max<double>(ia, db)<<"n";
- std::cout<< max(static_cast<double>(ia), db)<<"n";
- }//====================================