C++ 模板编程简单示例程序

template<typename T, int N>
void Print(T value)
{
    for(int i = 0; i < N; i++)
        cout << value << endl;
}

using namespace std;

int main()
{
    Print<string, 3>("hello");
    Print<int, 3>(23);
    Print<float, 3>(12.3);
}

 

posted @ 2022-04-13 11:13  小小林林  阅读(218)  评论(0编辑  收藏  举报