假设我有一个全局字典parent
,其中包含一些child
parent = Dict( child1, child2, ...);
每个child
都是
child = Dict("weight" => 100.0; "height" = 10.0);
有没有办法将父母方面的这些孩子按某种类别排序?就像我想要产生一个parent
,其子节点根据weight
进行排序?
谢谢,
答案 0 :(得分:3)
所以,
sort!(parent,by=x->x["weight"])
应该做的伎俩。使用sort
(无!
)返回新的向量。在REPL中尝试?sort
以获取更多选项。