在 Scala 中表示值约束的最佳方式?
表达 Int 字段或参数永远不应该为负数的最佳方式是什么?
首先想到的是类型上的注释,例如 case class Foo(x: Int @NotNegative)
。但我必须发明自己的注释,并且不会有任何类型的编译时检查或任何东西。
有更好的办法吗?
What is the best way to express that, say, an Int
field or parameter should never be negative?
The first thing that comes to mind is an annotation on the type, like case class Foo(x: Int @NotNegative)
. But I'd have to invent my own annotation, and there wouldn't be any sort of compile-time checking or anything.
Is there a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为什么不使用单独的数据类型?
用法:
Why not using a separate data type?
Usage:
也许稍微好一点(?),但仍然没有编译器检查:
require(x >= 0)
。Slightly better (?), perhaps, but still no compiler check:
require(x >= 0)
.Scala 目前不支持契约和不变量。
Contracts and invariants are not supported by Scala at this time.