InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by class parameters in Scala? |
|
Answer» In Scala, while declaring a class, sometimes we SPECIFY some PARAMETERS which are mandatory to pass while instantiating an object of that type. These parameters are called the class parameters. |
|