Here, we will demonstrate the use of the toString() function with Triple in Kotlin. The toString() function returns the string equivalent of the Triple.
fun main() {
// creating a new instance of the Triple
var numbers = Triple(10, 20, 30)
// Printing the Triple in string format
println("String representation is "+numbers.toString())
}
Output:
String representation is (10, 20, 30)
Example 2:
fun main() {
// creating a new instance of the Triple
var student = Triple("Alvin Alexander", 35, "New York")
// Printing Triple in string format
println("String representation is "+student.toString())
}
Output:
String representation is (Alvin Alexander, 35, New York)
Example 1:
Output:
Example 2:
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer