【C++】c++泛型编程

c++的模板

c++泛型编程

# include <iostream>
using namespace std;

template <typename T>

class op
{
public:
    T process(T v)
    {
        return v * v;
    }
};

int main()
{
    op<int> opInt;
    cout << opInt.process(5) << endl;
    op<double>opDouble;
    cout << opDouble.process(1.1) << endl;
    cin.get();
    return 0;
}

 

posted @ 2022-07-28 17:04  王牌飞行员_里海  阅读(24)  评论(0编辑  收藏  举报