toDouble()方法用於將指定字符轉換為Double或Double類型的ASCII值。
函數定義: def toDouble: Double
返回類型: It returns Double or ASCII value of the corresponding letter of type Double.
示例:1#
// Scala program of toDouble()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toDouble method to uni-code representation of character
val result = '\u0051'.toDouble
// Displays output
println(result)
}
}
輸出:
81.0
在這裏,“ \ u0051”是Q的uni-code表示形式。
示例:2#
// Scala program of toDouble()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toDouble method
val result = '\n'.toDouble
// Displays output
println(result)
}
}
輸出:
10.0
相關用法
- Scala Int toDouble()用法及代碼示例
- Scala Float toDouble()用法及代碼示例
- Scala Long toDouble()用法及代碼示例
- Scala Short toDouble()用法及代碼示例
- Scala Byte toDouble()用法及代碼示例
- Scala Char to(end: Char, step: Char)用法及代碼示例
- Scala Char to(end: Char)用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Char toDouble() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。