タイプb
の変数Byte
を含むKotlinプログラムがあり、外部システムが_127
_より大きい値を書き込むと想像してください。 「外部」とは、返される値のタイプを変更できないことを意味します。
val a:Int = 128 val b:Byte = a.toByte()
a.toByte()
とb.toInt()
はどちらも_-128
_を返します。
変数b
から正しい値(_128
_)を取得したいとします。どうすればできますか?
つまり、magicallyExtractRightValue
をどのように実装すると、次のテストが実行されますか?
_@Test
fun testByteConversion() {
val a:Int = 128
val b:Byte = a.toByte()
System.out.println(a.toByte())
System.out.println(b.toInt())
val c:Int = magicallyExtractRightValue(b)
Assertions.assertThat(c).isEqualTo(128)
}
private fun magicallyExtractRightValue(b: Byte): Int {
throw UnsupportedOperationException("not implemented")
}
_
Update 1:Thilo によって提案されたこのソリューションは機能しているようです。
_private fun magicallyExtractRightValue(o: Byte): Int = when {
(o.toInt() < 0) -> 255 + o.toInt() + 1
else -> o.toInt()
}
_
Kotlin 1.3以降では、 nsigned types を使用できます。例えば toUByte
( Kotlin Playground ):
private fun magicallyExtractRightValue(b: Byte): Int {
return b.toUByte().toInt()
}
または、UByte
の代わりにByte
を直接使用する必要があります( Kotlin Playground ):
private fun magicallyExtractRightValue(b: UByte): Int {
return b.toInt()
}
Kotlin 1.3より前のリリースでは、 and
を使用して 拡張関数 を作成することをお勧めします。
fun Byte.toPositiveInt() = toInt() and 0xFF
使用例:
val a: List<Int> = listOf(0, 1, 63, 127, 128, 244, 255)
println("from ints: $a")
val b: List<Byte> = a.map(Int::toByte)
println("to bytes: $b")
val c: List<Int> = b.map(Byte::toPositiveInt)
println("to positive ints: $c")
出力例:
from ints: [0, 1, 63, 127, 128, 244, 255]
to bytes: [0, 1, 63, 127, -128, -12, -1]
to positive ints: [0, 1, 63, 127, 128, 244, 255]
古き良きprintf
は私たちが望むことをします:
Java.lang.String.format("%02x", byte)