制作自定义日历时,如何设置日期并获取该月的总天数?或者甚至获得特定日期的工作日? 如四月 30天,五月 31天,二月每 4年 29天,每周工作日不同。
我使用的是Jambi(java中的Qt 4.7),我希望制作日历少QComboBox
,我使用QDate
来获取当前日期:
//return current year
QDate.currentDate().year();
//return total days in current month
QDate.currentDate().daysInMonth();
//return current month
QDate.currentDate().month();
//return current day in month
QDate.currentDate().day();
//return current day in week
QDate.currentDate().dayOfWeek();
我得到的是当前信息。
我查看了 QData documentation ,我找不到任何设置日期的选项,以便我可以从中获取信息,任何想法?
答案 0 :(得分:1)