50.模板嵌套

Posted 喵小喵~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了50.模板嵌套相关的知识,希望对你有一定的参考价值。

 1 #include <iostream>
 2 #include <vector>
 3 #include <list>
 4 using namespace std;
 5 
 6 //传递模板进去自动确定模板的元素类型
 7 template<class T,class T2>
 8 void showall(vector<T> v,list<T2> l)
 9 {
10     for (auto i : v)
11     {
12         cout << i << endl;
13     }
14     for (auto i : l)
15     {
16         cout << i << endl;
17     }
18 }
19 
20 void main()
21 {
22     vector<int> myint{ 1,2,3,4,5 };
23     list<char> mychar{ a,b,c };
24     showall(myint,mychar);
25     cin.get();
26 }

 

以上是关于50.模板嵌套的主要内容,如果未能解决你的问题,请参考以下文章

当返回到“导航架构组件”中的同一选项卡时,嵌套片段的状态会丢失

使用嵌套片段和动画对象

将片段添加到片段中(嵌套片段)

Android 动画嵌套片段

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段1——vue主模板