El método &(x: Char) se utiliza para encontrar el AND bit a bit del valor de carácter indicado y ‘x’ del tipo Char.
Definición del método: def &(x: Char): Int
Tipo de retorno: Devuelve Int.
Ejemplo 1#
// Scala program of &(x: Char) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying &(x: Char) method val result = 'E'.&('e') // Displays output println(result) } }
Producción:
69
Ejemplo: 2#
// Scala program of &(x: Char) // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying &(x: Char) method val result = 'A'.&('a') // Displays output println(result) } }
Producción:
65
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA