Q:

Kotlin example of creating triple using the constructor

0

In Kotlin, the constructor is same as other programming languages, it is a special kind of member function that is invoked when an object is being created and it is primarily used for initializing the variables or properties.

Here is the syntax to create a new instance of the Triple:

Triple(first: A, second: B, third: C)

In the below examples, we will create a triple by using the constructor.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Example 1:

fun main() {
  // creating a new instance of the Triple
  val(a, b, c) = Triple(10, 20, 30)

  // Printing the values
  println(a)
  println(b)
  println(c)
}

Output:

10
20
30

Example 2:

fun main() {
	// creating a new instance of the Triple
	val (name, age, city) = Triple("Alvin", 35, "New York")

	// Printing the values
	println("Name: $name")
	println("Age: $age")
	println("City: $city")
}

Output:

Name: Alvin
Age: 35
City: New York

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now