如何编写自己的自定义测量转换器
如何编写自己的自定义转换器并使用 javax.measure 包指定转换系数。 (例如品脱至加仑)
How do you write your own custom converters and specify the conversion factor using javax.measure packages. (e.g. Pint to gallons)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我不知道“正确”的方法,但明显的方法是遵循
NonSI
类;即创建您自己的类,其中包含每个单位的静态数据,其值基于非 SI 单位的标准定义(以 SI 单位表示)。Well, I don't know the "correct" way to do it, but the obvious way would be to follow the pattern of the
NonSI
class; i.e. create your own class containing statics for each unit, with values based on the standard definitions for the non-SI units in terms of SI units.