toByte
Parses the string to a Byte number.
The string must consist of an optional leading +
or -
sign and decimal digits (0-9
), and fit the valid Byte value range (within Byte.MIN_VALUE..Byte.MAX_VALUE
), otherwise a NumberFormatException will be thrown.
Since Kotlin
1.0Throws
if the string is not a valid representation of a Byte.
Samples
import kotlin.test.assertFailsWith
fun main() {
//sampleStart
println("0".toByte()) // 0
println("42".toByte()) // 42
println("042".toByte()) // 42
println("-42".toByte()) // -42
// Byte.MAX_VALUE
println("127".toByte()) // 127
// Byte overflow
// "128".toByte() // will fail with NumberFormatException
// 'a' is not a digit
// "-1a".toByte() // will fail with NumberFormatException
// underscore
// "1_00".toByte() // will fail with NumberFormatException
// whitespaces
// " 22 ".toByte() // will fail with NumberFormatException
//sampleEnd
}
Parses the string as a signed Byte number and returns the result.
Since Kotlin
1.0Throws
if the string is not a valid representation of a number.
when radix is not a valid radix for string to number conversion.
Parses the string to a Byte number.
The string must consist of an optional leading +
or -
sign and decimal digits (0-9
), and fit the valid Byte value range (within Byte.MIN_VALUE..Byte.MAX_VALUE
), otherwise a NumberFormatException will be thrown.
Since Kotlin
1.1Throws
if the string is not a valid representation of a Byte.
Samples
import kotlin.test.assertFailsWith
fun main() {
//sampleStart
println("0".toByte()) // 0
println("42".toByte()) // 42
println("042".toByte()) // 42
println("-42".toByte()) // -42
// Byte.MAX_VALUE
println("127".toByte()) // 127
// Byte overflow
// "128".toByte() // will fail with NumberFormatException
// 'a' is not a digit
// "-1a".toByte() // will fail with NumberFormatException
// underscore
// "1_00".toByte() // will fail with NumberFormatException
// whitespaces
// " 22 ".toByte() // will fail with NumberFormatException
//sampleEnd
}
Parses the string as a signed Byte number and returns the result.
Since Kotlin
1.1Throws
if the string is not a valid representation of a number.
when radix is not a valid radix for string to number conversion.
Parses the string to a Byte number.
The string must consist of an optional leading +
or -
sign and decimal digits (0-9
), and fit the valid Byte value range (within Byte.MIN_VALUE..Byte.MAX_VALUE
), otherwise a NumberFormatException will be thrown.
Since Kotlin
1.0Throws
if the string is not a valid representation of a Byte.
Samples
import kotlin.test.assertFailsWith
fun main() {
//sampleStart
println("0".toByte()) // 0
println("42".toByte()) // 42
println("042".toByte()) // 42
println("-42".toByte()) // -42
// Byte.MAX_VALUE
println("127".toByte()) // 127
// Byte overflow
// "128".toByte() // will fail with NumberFormatException
// 'a' is not a digit
// "-1a".toByte() // will fail with NumberFormatException
// underscore
// "1_00".toByte() // will fail with NumberFormatException
// whitespaces
// " 22 ".toByte() // will fail with NumberFormatException
//sampleEnd
}
Parses the string as a signed Byte number and returns the result.
Since Kotlin
1.1Throws
if the string is not a valid representation of a number.
when radix is not a valid radix for string to number conversion.
Parses the string to a Byte number.
The string must consist of an optional leading +
or -
sign and decimal digits (0-9
), and fit the valid Byte value range (within Byte.MIN_VALUE..Byte.MAX_VALUE
), otherwise a NumberFormatException will be thrown.
Since Kotlin
1.3Throws
if the string is not a valid representation of a Byte.
Samples
import kotlin.test.assertFailsWith
fun main() {
//sampleStart
println("0".toByte()) // 0
println("42".toByte()) // 42
println("042".toByte()) // 42
println("-42".toByte()) // -42
// Byte.MAX_VALUE
println("127".toByte()) // 127
// Byte overflow
// "128".toByte() // will fail with NumberFormatException
// 'a' is not a digit
// "-1a".toByte() // will fail with NumberFormatException
// underscore
// "1_00".toByte() // will fail with NumberFormatException
// whitespaces
// " 22 ".toByte() // will fail with NumberFormatException
//sampleEnd
}
Parses the string as a signed Byte number and returns the result.
Since Kotlin
1.3Throws
if the string is not a valid representation of a number.
when radix is not a valid radix for string to number conversion.
Parses the string to a Byte number.
The string must consist of an optional leading +
or -
sign and decimal digits (0-9
), and fit the valid Byte value range (within Byte.MIN_VALUE..Byte.MAX_VALUE
), otherwise a NumberFormatException will be thrown.
Since Kotlin
1.8Throws
if the string is not a valid representation of a Byte.
Samples
import kotlin.test.assertFailsWith
fun main() {
//sampleStart
println("0".toByte()) // 0
println("42".toByte()) // 42
println("042".toByte()) // 42
println("-42".toByte()) // -42
// Byte.MAX_VALUE
println("127".toByte()) // 127
// Byte overflow
// "128".toByte() // will fail with NumberFormatException
// 'a' is not a digit
// "-1a".toByte() // will fail with NumberFormatException
// underscore
// "1_00".toByte() // will fail with NumberFormatException
// whitespaces
// " 22 ".toByte() // will fail with NumberFormatException
//sampleEnd
}
Parses the string as a signed Byte number and returns the result.
Since Kotlin
1.8Throws
if the string is not a valid representation of a number.
when radix is not a valid radix for string to number conversion.
Parses the string to a Byte number.
The string must consist of an optional leading +
or -
sign and decimal digits (0-9
), and fit the valid Byte value range (within Byte.MIN_VALUE..Byte.MAX_VALUE
), otherwise a NumberFormatException will be thrown.
Since Kotlin
1.8Throws
if the string is not a valid representation of a Byte.
Samples
import kotlin.test.assertFailsWith
fun main() {
//sampleStart
println("0".toByte()) // 0
println("42".toByte()) // 42
println("042".toByte()) // 42
println("-42".toByte()) // -42
// Byte.MAX_VALUE
println("127".toByte()) // 127
// Byte overflow
// "128".toByte() // will fail with NumberFormatException
// 'a' is not a digit
// "-1a".toByte() // will fail with NumberFormatException
// underscore
// "1_00".toByte() // will fail with NumberFormatException
// whitespaces
// " 22 ".toByte() // will fail with NumberFormatException
//sampleEnd
}
Parses the string as a signed Byte number and returns the result.
Since Kotlin
1.8Throws
if the string is not a valid representation of a number.
when radix is not a valid radix for string to number conversion.