找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 173|回复: 0

在C++中,关于STL container(vector、list...)传入函数模板的问题

[复制链接]

0

主题

0

回帖

26

积分

管理员

积分
26
发表于 2024-3-9 13:40:44 | 显示全部楼层 |阅读模式
如要设计一个可求得一般container中最大元素的函数,声明给定如下:



template<typename ElementType, typename ContainerType>
ElementType maxElement(ContainerType &container)



我主要不明白以下两点:

1. 如何传入container 的元素类型ElementType?

2. 在函数内如何进行对container的元素的操作?(iterator?)

答:

1. 如何传入container 的元素类型ElementType?

maxElement<int, list<int>>(l) ;在调用模板函数时候对其实例化,详见下面代码

2.是的,通过iterator操作

需要理解的是模板的实例化是在编译程序之前,由编译器自动展开的,有点类似于宏替换,只不过模板实例化提供了一些高级功能,比如模板参数的推导。

#include <iostream>
#include <vector>
#include <list>
using namespace std;

template <typename ElementType, class ContainerType>
ElementType maxElement(ContainerType &container)
{
    ContainerType::iterator iter = container.begin();
    ElementType max = *iter;
    for (iter++; iter != container.end(); iter++)
    {
        if (*iter > max)
            max = *iter;
    }
    return max;
}

void main()
{
    list<int> l;
    l.push采用back(10);
    l.push采用back(12);
    l.push采用back(2);
    l.push采用back(44);
    cout << maxElement<int, list<int>>(l) << endl;
}
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|膜结构网

GMT+8, 2024-12-28 13:46 , Processed in 0.117086 second(s), 23 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表