Q:

Scala program to create a private case class

belongs to collection: Scala Classes & Objects Programs

0

Here, we will create a private case class. The private case class cannot be accessed in the different source file.

All Answers

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

Program/Source Code:

The source code to create a private case class is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to create a private case class

private case class MyCaseClass(id: Int, name: String)
object Sample {
  def main(args: Array[String]) {
    // Creating object of case class
    var obj = MyCaseClass(101, "Rahul Kohli")

    println("id   : " + obj.id)
    println("name : " + obj.name)
  }
}

Output:

id   : 101
name : Rahul Kohli

Explanation:

Here, we used an object-oriented approach to create the program. And, we created an object Sample.

We created a private case class MyCaseClass with two members id and name.

Then we defined the main() function. The main() function is the entry point for the program.

In the main() function, we created an object of the case class and access the members of the case class. After that, we printed the value of case class members on the console screen.

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

total answers (1)

Scala program to demonstrate the \'this\'... >>
<< Scala program to create a private singleton object...