Scala String: Creating String, Concatenation, String Length
In this chapter, we will discuss Scala String in Detail. After this, you will be able to create a string in Scala. Moreover, we will learn how to create a format string and concatenate...
In this chapter, we will discuss Scala String in Detail. After this, you will be able to create a string in Scala. Moreover, we will learn how to create a format string and concatenate...
Access Modifiers in Scala This article deals with private, protected, and public members of a class in Scala. Let’s begin with the Scala Access Modifiers Tutorial. Scala Access Modifiers Constructs like classes, objects, or...
If you put in time and effort to learn something, it should repay you, right? And Scala is a language that’s a bit difficult to learn. So, why give in all the effort? There...
This article aims to explain to you the basic Scala Syntax. Though it is a bit different from Java Syntax or C++, we’ll get used to it. Along with this, we will learn Scala Keywords, Scala...
What are Scala variables, and how do we declare them? What is type inference? How do we perform multiple assignments? What is the variable scope? These are the questions we’ll be answering today. So,...
In this Scala operator tutorial, we will disucss what is an operator in Scala. Moreover, we will discuss various types of Scala operators: Arithmetic, Relational, Logical, Bitwise, Assignment Operators in Scala with their syntax...
Sometimes, in your code, you may want to execute a set of statements for, say, 100 times. Would you type them a hundred times? Obviously not. This is where loops come in. A loop...
Today, we will learn a new topic called Scala Do While Loop, which belongs to Scala control loop statement. Here, we will learn the syntax and example of do while loops. Along with this, we...
So, we discussed three kinds of loops in Scala. In this Scala Break tutorial, we will discuss this syntax & example of Scala Break statement. Moreover, we will learn how to break nested loop...
In this Scala While Loop tutorial, we will study what is while loop in Scala with syntax and example. Moreover, we will discuss how Scala while loop works and One Infinite Loop with exmaple. So,...