博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
利用Stack倒序List,利用Set使List不能添加重复元素
阅读量:6800 次
发布时间:2019-06-26

本文共 599 字,大约阅读时间需要 1 分钟。

利用Stack倒序List

Stack
stactContact = new Stack
(); for (Contact contact : mFollowerList) { stactContact.push(contact); } while (!stactContact.empty()) { mContactList.add(stactContact.pop()); }

利用Set使List不能添加重复元素

//排除重复元素                            Set tempSet = new HashSet(mFollowerList);                            if (tempSet.add(addFollower)) {                                mFollowerList.add(addFollower);                            }

友情提醒,new collection的时候都要判空

转载地址:http://gmuwl.baihongyu.com/

你可能感兴趣的文章
一步一步配置 Dell OME 监控 Dell 服务器硬件报警
查看>>
[matlab] 18.图与网络 (转载)
查看>>
小初高试卷生成程序—代码优缺点
查看>>
DS博客作业01—日期抽象数据类型设计与实现
查看>>
【BFS】HDU1429 - 胜利大逃亡(续)
查看>>
linux下mysql忘记root密码的解决方案
查看>>
世界历史教科书-九年级上册.pdf
查看>>
LDAP Authentication for openNebula3.2
查看>>
C++ STL 学习笔记__(6)优先级队列priority_queue基本操作
查看>>
Max user processes limits
查看>>
APP 上线-打包上传环境配置(接上篇)
查看>>
图片垂直居中,兼容ie6
查看>>
iOS--资料--开源项目及库
查看>>
MBR(Master Boot Record)主引导记录分析
查看>>
词汇小助手V1.1——引入自动翻译和在线词典功能
查看>>
委托-异步调用-泛型委托-匿名方法-Lambda表达式-事件
查看>>
国债期货下跌意味着什么
查看>>
抽象类的应用——汽车租赁系统
查看>>
Voilin 与 乐谱
查看>>
一键U盘装系统
查看>>