Scala – Logical Operators
In this guide, we will discuss Scala Logical Operators. Try the following example program to understand all the logical operators available in Scala Programming Language. Example object Demo { def…
In this guide, we will discuss Scala Logical Operators. Try the following example program to understand all the logical operators available in Scala Programming Language. Example object Demo { def…
In this guide, we will discuss Scala Relational Operators. Try the following example program to understand all the relational operators available in Scala Programming Language. Example object Demo { def…
In this guide, we will discuss Scala Arithmetic Operators. Try the following example program to understand all the arithmetic operators available in Scala Programming Language. Example object Demo { def…
In this guide, we will discuss Scala Operators. An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. Scala is rich in built-in operators…
In this guide, we will discuss Scala Access Modifiers. This chapter takes you through the Scala access modifiers. Members of packages, classes or objects can be labeled with the access…
In this guide, we will discuss Scala Classes & Objects. This chapter takes you through how to use classes and objects in Scala programming. A class is a blueprint for…
In this guide, we will discuss Scala Variables. Variables are nothing but reserved memory locations to store values. This means that when you create a variable, you reserve some space…
In this guide, we will discuss Scala Data Types. Scala has all the same data types as Java, with the same memory footprint and precision. Following is the table giving…
In this guide, we will discuss Scala Basic Syntax. If you have a good understanding on Java, then it will be very easy for you to learn Scala. The biggest…
In this guide, we will discuss Scala Environment setup. Scala can be installed on any UNIX flavored or Windows based system. Before you start installing Scala on your machine, you…