Qt 的文档说QDir::entryInfoList
可以接受多个排序条件,但我不清楚该怎么做。
This enum describes the sort options available to QDir, e.g. for entryList() and entryInfoList().
The sort value is specified by OR-ing together values from the following list:
QDir::Name 0x00 Sort by name.
QDir::Time 0x01 Sort by time (modification time).
:
(snip)
我认为OR-ing
需要以某种方式完成,暂时想不出怎么做(我认为必须回去审查位移?)但是有人可以告诉我怎么做吗?欣赏它。
(无论如何,这个描述作为高级语言的文档不清楚吗?)