Home »
Kotlin »
Kotlin Programs
Kotlin program to get the string equivalent of the Triple
Example of toString() function: Learn how to get the string equivalent of the Triple?
Submitted by IncludeHelp, on April 09, 2022
Here, we will demonstrate the use of the toString() function with Triple in Kotlin. The toString() function returns the string equivalent of the Triple.
Syntax:
fun toString(): String
Example 1:
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)
Kotlin Triple Programs »