Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找使用 QT 的 QDate 类型进行日期搜索。我目前有一个具有指定时间的 QDate,以及两个 QDate 来提供一个搜索范围。如果项目在该范围内,它应该返回 true。
QDate item = Apr 22nd 2013 QDate startSearch = Apr 1st 2013 QDate endSearch = Apr 30th 2013
我不知道这样做的内置函数,建议?
怎么样:
bool withinRange = (item >= startSearch && item <= endSearch);