Scala

Scala

Scala tags covers the tutorials which are basics and intermediate topics, feel free to read them and subscribe

Factory Pattern In Scala

A Factory pattern or Factory method pattern is very common design pattern used in software development,its is classified as creational pattern. which solves the problem of creating the instance of the class

Difference between object and class in Scala.

Object so in scala object is a singleton instance of the class, lets explain with small snippet. object test { def addPlusOne(a:Int) = a+1; } So when your calling the function instance is