Scala program to create a private singleton object

Here, we are going to learn how to create a private singleton object in Scala programming language?
Submitted by Nidhi, on June 23, 2021 [Last updated : March 11, 2023]

Scala – Creating a Private Singleton Object

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

Scala code to create a private singleton object

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

// Scala program to create a "private" singleton object

private object SingletonObj {
  var num1: Int = 10;
  var num2: Int = 20;
}

object Sample {
  def main(args: Array[String]) {
    printf("Num1: %d\n", SingletonObj.num1);
    printf("Num2: %d\n", SingletonObj.num2);
  }
}

Output

Num1: 10
Num2: 20

Explanation

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

We created a private singleton object SingletonObj. It contains two data members num1, num2 that are initialized with 10,20 respectively.

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

In the main() function, we printed the value members of the singleton object on the console screen.

Scala Classes & Objects Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.