Constructors are used to initializing the object’s state. Like methods, a constructor also contains a collection of statements (i.e. instructions). Statements are executed at the time of object creation. In Scala Program, the constructors other than the primary constructor are known as Auxiliary Constructors. We are allowed to create any number of auxiliary constructors in our Scala class, but a scala class contains only one primary constructor.
Auxiliary constructors are defined as methods in the class with the keyword this. We can describe multiple auxiliary constructors, but they must have different parameter lists.
Syntax :
def this(......)
Let’s try to understand Auxiliary constructors with help of some examples.
Example #1: Using one Auxiliary Constructor
Scala
class GFG( Lname : String, Tname : String)
{
var no : Int = 0 ;;
def show()
{
println( "Language name: " + Lname);
println( "Topic name: " + Tname);
println( "Total number of articles: " + no);
}
def this (Lname : String, Tname : String, no : Int)
{
this (Lname, Tname)
this .no = no
}
}
object Main
{
def main(args : Array[String])
{
var obj = new GFG( "Scala" , "Constructor" , 4 );
obj.show();
}
}
|
Output:
Language name: Scala
Topic name: Constructor
Total number of articles: 4
In above example, as we can see only one auxiliary constructor is used and primary constructor invoked in that auxiliary constructor. After creating object of GFG class(obj), show() function will be called and print the result.
Example #2: Using more than one Auxiliary Constructor.
scala
class Company
{
private var Cname = ""
private var Employee = 0
def show()
{
println( "Language name: " + Cname);
println( "Total number of employee: " + Employee);
}
def this (Cname : String)
{
this ()
this .Cname = Cname
}
def this (Cname : String, Employee : Int)
{
this (Cname)
this .Employee = Employee
}
}
object Main
{
def main(args : Array[String])
{
val c 1 = new Company
c 1 .show()
val c 2 = new Company( "GeeksForGeeks" )
c 2 .show()
val c 3 = new Company( "GeeksForGeeks" , 42 )
c 3 .show()
}
}
|
Output:
Language name:
Total number of employee: 0
Language name: GeeksForGeeks
Total number of employee: 0
Language name: GeeksForGeeks
Total number of employee: 42
In above example, as we can see two auxiliary constructors are created with different parameters. Auxiliary constructor invoked primary constructor and another auxiliary constructor invoked previously defined auxiliary constructor.
Some Important Points About Auxiliary Constructor
- In a single class, we are allowed to create one or more than one auxiliary constructors, but they have different signatures or parameter-lists.
- Each auxiliary constructor must call one of the previously defined constructors, this would be primary constructor or previous auxiliary constructor.
- The invoke constructor may be a primary or previous auxiliary constructor that comes textually before the calling constructor.
- The first statement of the auxiliary constructor must contain this keyword.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!