如何获取 Scala 2.8 中枚举集的 Long/Int 值
在 Scala 2.7 中,枚举提供 Set32/Set64 来构建枚举集,并轻松获取 Long/Int 中的按位值或从 Long/Int 值构建枚举集(这可以简化数据库存储)。 Scala 2.8 删除了这些类。 2.8 lib中有替代品吗?
In Scala 2.7, Enumeration provide Set32/Set64 to build enum set and easily get the bitwise value in Long/Int or build enum set back from a Long/Int value (which ease db storage). Scala 2.8 removed these classes. Is there a replacement in 2.8 lib?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该表示很容易实现,您应该自己执行此操作,因为 Scala 库的内部实现可能会发生变化,并且您的数据将被破坏:
请记住,在数据库中存储序数是脆弱的: 将 EnumSet 存储在数据库中?。您应该为每个值选择一个稳定的序数。
The representation is quite easy to implement and you should do this yourself as the internal implementation of the Scala libs may change and your data would be broken:
Keep in mind that storing the ordinal in the database is fragile: Storing EnumSet in a database?. You should pick a stabile ordinal for each value.