Kotlin:在界面中指定输入约束
Kotlin: Specify input-constraints in interface
假设我有以下界面:
interface MathThing {
fun mathFunction(x : Int)
}
假设我想对该函数施加的约束是 x 不能为负数。
如何确保每次 MathThing 类型的对象不满足此(或任何其他任意)条件时,都会抛出(自定义)异常?
一种方法是为您的函数参数使用包装器 class。您可以制作一个扩展函数,以便将值传递给该函数更容易一些。
data class NonNegative(val value: Int) {
init{ if (value < 0) throw IllegalArgumentException("Input must not be negative.") }
}
fun Int.nonNegative() = NonNegative(this)
interface MathThing {
fun mathFunction(x : NonNegative)
}
假设我有以下界面:
interface MathThing {
fun mathFunction(x : Int)
}
假设我想对该函数施加的约束是 x 不能为负数。
如何确保每次 MathThing 类型的对象不满足此(或任何其他任意)条件时,都会抛出(自定义)异常?
一种方法是为您的函数参数使用包装器 class。您可以制作一个扩展函数,以便将值传递给该函数更容易一些。
data class NonNegative(val value: Int) {
init{ if (value < 0) throw IllegalArgumentException("Input must not be negative.") }
}
fun Int.nonNegative() = NonNegative(this)
interface MathThing {
fun mathFunction(x : NonNegative)
}