python获取字典第一个元素_从字典中获取第一个元素

在不知道键或值的情况下,如何从Dictionary类型的字典中获取第一个元素?可以使用LINQ的First()方法,但要注意对于字典,“第一个”没有明确定义,可能得到的是最后添加的项。如果需要按特定顺序获取,可以结合OrderBy()方法。" 89433832,8073240,使用Java Calendar处理身份证信息,"['Java开发', '日期处理', '身份证解析']
摘要由CSDN通过智能技术生成

I have the following declaration:

Dictionary> like = new Dictionary>();

I need to get the first element out, but do not know the key or value. What's the best way to do this?

解决方案

Edit To satisfy the commenters.

Note that to call First here is actually to call a Linq extension of IEnumerable, which is implemented by Dictionary. But for a Dictionary, "first" doesn't have a defined meaning. According to this answer, the last item added ends up being the "First" (in other words, it behaves like a Stack), but that is implementation specific, it's not the guaranteed behavior. In other words, to assume you're going to get any defined item by calling First would be to beg for trouble -- using it should be treated as akin to getting a random item from the Dictionary, as noted by Bobson below. However, sometimes this is useful, a

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值