带有示例的 Scala Char /(x: Short) 方法
/(x:Short)方法用于查找所述字符值与Short类型的'x'的商。
Method Definition: def /(x: Short): Int
Return Type: It returns Int.
示例:1#
// Scala program of /(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying /(x: Short) method
val result = 'A'./(11116)
// Displays output
println(result)
}
}
输出:
0
示例:2#
// Scala program of /(x: Short)
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying /(x: Short) method
val result = 'D'./(-1000)
// Displays output
println(result)
}
}
输出:
0