VOOZH about

URL: https://www.geeksforgeeks.org/scala/scala-auxiliary-constructor/

⇱ Scala | Auxiliary Constructor - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Scala | Auxiliary Constructor

Last Updated : 11 Jul, 2025

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 
 

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. 
 

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.


 

Comment
Article Tags:

Explore