Home »
Scala »
Scala Programs
Scala program to create a private case class
Here, we are going to learn how to create a private case class in Scala programming language?
Submitted by Nidhi, on June 23, 2021 [Last updated : March 11, 2023]
Scala – Create a Private Case Class
Here, we will create a private case class. The private case class cannot be accessed in the different source file.
Scala code to create a private case class
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.
Scala Classes & Objects Programs »