toShort()方法用於將聲明的字符轉換為Short類型。
函數定義: def toShort: Short
返回類型: It returns Short.
示例:1#
// Scala program of toShort()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toShort method
val result = '\u5555'.toLong
// Displays output
println(result)
}
}
輸出:
21845
示例:2#
// Scala program of toShort()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toShort method
val result = '\u1111'.toShort
// Displays output
println(result)
}
}
輸出:
4369
相關用法
- Scala Int toShort()用法及代碼示例
- Scala Byte toShort()用法及代碼示例
- Scala Short toShort()用法及代碼示例
- Scala Float toShort()用法及代碼示例
- Scala Char to(end: Char, step: Char)用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Char toShort() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。