Classes and Objects

Learn How To Start OOPS IN SCALA

Reading Time: 6 minutes INTRODUCTION Scala is a functional-object-oriented programming hybrid that seamlessly integrates the features of object-oriented and functional languages. It has the capability to interoperate with existing Java code and libraries. The main aim of OOP is to bind together the data and the functions that operate on them so that no other part of the code can access this data except that function. Why object-oriented? Scala Continue Reading

Combating Fallacy in Scala

Combating Fallacy in Scala: Part 3

Reading Time: 3 minutes Hey everyone, I’m back with another blog, “Combating Fallacy in Scala: Part 3“. So, in this blog, we will have a look into Classes in Scala and the Constructor Parameters. Class and Constructor Parameters Before moving to the problem in this blog, let’s have a look at classes in Scala. According to the Scala Docs “Classes in Scala are blueprints for creating objects. They can Continue Reading

Scala Beginner Series (2) : Object Oriented Scala

Reading Time: 7 minutes This series is all about the taste of Scala.It is best suitable for all the newbies in Scala. You may also like: Scala Beginner Series (1) : Basics In the previous part, we covered: Values, variables, expressions and types Functions and recursion The Unit type This article will cover the object oriented nature of Scala language. Classes Scala has the same concept of a class as we Continue Reading

Scala: Class and Object

Reading Time: 3 minutes In this blog, I am going to discuss about the most important feature of the OOPs language, i.e., Classes and Objects in Scala. What is a Scala Class ? Scala classes are blueprint or template for creating objects. Moreover they contain information of fields, methods, constructor, super classes, etc. So with the help of class keyword we can define the class. To access the members Continue Reading