coerceAtMost
所在位置是kotlin.ranges.coerceAtMost
,其相關用法介紹如下。
用法一
確保此值不大於指定的 maximumValue 。
例子:
import java.time.DayOfWeek
import kotlin.test.assertFailsWith
fun main(args: Array<String>) {
//sampleStart
println(DayOfWeek.FRIDAY.coerceAtMost(DayOfWeek.SATURDAY)) // FRIDAY
println(DayOfWeek.FRIDAY.coerceAtMost(DayOfWeek.WEDNESDAY)) // WEDNESDAY
//sampleEnd
}
輸出:
FRIDAY WEDNESDAY
如果它小於或等於maximumValue,則返回此值,否則返回maximumValue。
用法二
確保此值不大於指定的 maximumValue 。
例子:
import java.time.DayOfWeek
import kotlin.test.assertFailsWith
fun main(args: Array<String>) {
//sampleStart
println(10.coerceAtMost(5)) // 5
println(10.coerceAtMost(20)) // 10
//sampleEnd
}
輸出:
5 10
如果它小於或等於maximumValue,則返回此值,否則返回maximumValue。
用法三
確保此值不大於指定的 maximumValue 。
例子:
import java.time.DayOfWeek
import kotlin.test.assertFailsWith
fun main(args: Array<String>) {
//sampleStart
println(10u.coerceAtMost(5u)) // 5
println(10u.coerceAtMost(20u)) // 10
//sampleEnd
}
輸出:
5 10
如果它小於或等於maximumValue,則返回此值,否則返回maximumValue。
相關用法
- Kotlin coerceAtLeast用法及代碼示例
- Kotlin coerceIn用法及代碼示例
- Kotlin contentToString用法及代碼示例
- Kotlin commonPrefixWith用法及代碼示例
- Kotlin containsAll用法及代碼示例
- Kotlin code用法及代碼示例
- Kotlin copyOf用法及代碼示例
- Kotlin component2用法及代碼示例
- Kotlin contains用法及代碼示例
- Kotlin commonSuffixWith用法及代碼示例
- Kotlin containsValue用法及代碼示例
- Kotlin component1用法及代碼示例
- Kotlin contentEquals用法及代碼示例
- Kotlin capitalize用法及代碼示例
- Kotlin chunkedSequence用法及代碼示例
- Kotlin chunked用法及代碼示例
- Kotlin associateBy用法及代碼示例
- Kotlin all用法及代碼示例
- Kotlin map用法及代碼示例
- Kotlin filterNot用法及代碼示例
- Kotlin reduceRight用法及代碼示例
- Kotlin Random.Default用法及代碼示例
- Kotlin Byte.inc用法及代碼示例
- Kotlin getValue用法及代碼示例
- Kotlin Double.dec用法及代碼示例
注:本文由純淨天空篩選整理自kotlinlang.org大神的英文原創作品 kotlin.ranges.coerceAtMost。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。