摘要: 模板的嵌套指的是模板里面嵌套数据类型如vector和list等 // // Created by Administrator on 2021/7/17. // #include<iostream> #include<vector> #include<list> using namespace std 阅读全文
posted @ 2021-07-17 22:35 python我的最爱 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1.使用function定义一个函数模板,然后将函数模板进行赋值 function<int(int, int)> fun1 = add; //包装函数 2.构造函数模板, 将函数进行做输入进行传递 template<class T, class F> T run(T t1, T t2, F f) { 阅读全文
posted @ 2021-07-17 20:14 python我的最爱 阅读(237) 评论(0) 推荐(0) 编辑