Python 3.6 要让所有字典有序?

2016-10-03 13:35:57 +08:00
 guyskk

https://www.reddit.com/r/Python/comments/55iqpo/guido_on_dicts_in_python_36/

https://mail.python.org/pipermail/python-dev/2016-September/146348.html

I've been asked about this. Here's my opinion on the letter of the law in 3.6:

A compliant implementation may ensure the above three requirements either by making all dicts ordered, or by providing a custom dict subclass (e.g. OrderedDict) in those three cases.

I'd like to handwave on the ordering of all other dicts. Yes, in CPython 3.6 and in PyPy they are all ordered, but it's an implementation detail. I don't want to force all other implementations to follow suit. I also don't want too many people start depending on this, since their code will break in 3.5. (Code that needs to depend on the ordering of keyword args or class attributes should be relatively uncommon; but people will start to depend on the ordering of all dicts all too easily. I want to remind them that they are taking a risk, and their code won't be backwards compatible.)

--Guido

5422 次点击
所在节点    Python
16 条回复
terence4444
2016-10-03 13:40:26 +08:00
记得有一个 OrderedDict 可以用…
Patrick95
2016-10-03 13:44:19 +08:00
我觉得有序挺好的,无序也没什么影响。
tabris17
2016-10-03 13:54:15 +08:00
早就该这么做了
guyskk
2016-10-03 13:56:12 +08:00
@Patrick95 感觉这样会导致性能下降,这种字典结构在大多数语言里面都是无序的
tairan2006
2016-10-03 14:02:01 +08:00
默认实现由哈希表转为红黑树(或跳表)吧,性能当然有影响
kkzxak47
2016-10-03 14:08:13 +08:00
@guyskk 我记得有序是一个实现方式改变带来的副产品,不是刻意追求
kkzxak47
2016-10-03 14:11:04 +08:00
guyskk
2016-10-03 14:51:27 +08:00
doubleflower
2016-10-03 15:42:14 +08:00
这功能挺人性化的,连打印调试都更好读了,而且性能损失很小可以忽略。
skydiver
2016-10-03 15:44:04 +08:00
终于和最好的语言 PHP 看齐了
awanabe
2016-10-03 17:22:07 +08:00
@terence4444 OrderedDict 里面是维护了一个链表, 如果数据量大,相当于 size 是两倍... 还是挺吓人的🎺
cortexm3
2016-10-03 20:10:58 +08:00
@guyskk +1
zonghua
2016-10-03 22:29:35 +08:00
性能再一次降低了
tabris17
2016-10-03 22:31:46 +08:00
@tairan2006 怎么可能。无非是哈希表的 bucket 加上链表而已,多维护一个链表罢了,对性能影响微乎其微
jiang42
2016-10-03 22:33:56 +08:00
@zonghua 我的理解,性能不会降低,内存占用减少

具体参见 @kkzxak47 贴出的邮件

Python 其实一直致力于性能的提升, e.g. os.scandir
ruoyu0088
2016-10-04 22:14:23 +08:00
这里有性能比较: https://gist.github.com/methane/e7a2ae389ca13905508905f5fa4ad46c
内存可以节省 20%左右。

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/310381

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX