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.
我需要一个具有多个属性的 java 类,这些属性必须具有日和月(6 月 5 日、7 月 8 日等)。定义此字段的最佳方法是什么?
一年中的日期类型会遇到闰年的问题,将属性划分为日和月会让我有很多(因为我需要其中的几个)所以这个领域还有另一种方法吗?
另外:我使用 MySql 进行持久化,所以我希望属性易于持久化。
两种选择:
dayNumber
monthNumber
tinyInt
char
Char(4)
我个人会选择选项1