El método toHexString() se utiliza para devolver la forma hexadecimal del valor entero especificado.
Definición del método: def toHexString: String
Tipo de devolución: Devuelve la forma hexadecimal del valor entero especificado.
Ejemplo 1:
// Scala program of Int toHexString() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toHexString() method val result = (5).toHexString // Displays output println(result) } }
Producción:
5
Ejemplo #2:
// Scala program of Int toHexString() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Applying toHexString() method val result = (18).toHexString // Displays output println(result) } }
Producción:
12
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA