C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Scala TutorialScala tutorial provides basic and advanced concepts of Scala. Our Scala tutorial is designed for beginners and professionals. Scala is an object-oriented and functional programming language. Our Scala tutorial includes all topics of Scala language such as datatype, conditional expressions, comments, functions, examples on oops concepts, constructors, method overloading, this keyword, inheritance, final, exception handling, file handling, tuples, string, string interpolation, case classes, singleton objects, collection etc. What is ScalaScala is a general-purpose programming language. It supports object oriented, functional and imperative programming approaches. It is a strong static type language. In scala, everything is an object whether it is a function or a number. It does not have concept of primitive data. It was designed by Martin Odersky. It was officially released for java platform in early 2004 and for .Net framework in June 2004. Later on, Scala dropped .Net support in 2012. Scala is influenced by Java, Haskell, Lisp, Pizza etc. and influenced to F#, Fantom, Red etc. File extension of scala source file may be either .scala or .sc. You can create any kind of application like web application, enterprise application, mobile application, desktop based application etc. Scala Program ExampleLet's see the simple program of scala. A detailed description of this program is given in next chapters. object MainObject{ def main(args:Array[String]){ print("Hello Scala") } } Where to use Scala
In Scala, you can create any type of application in less time and coding whether it is web based, mobile based or desktop based application. Scala provides you powerful tools and API by using which you can create applications. Here, You can use play framework which provides a platform to build web application rapidly. Scala IndexScala Tutorial
Scala Functions Scala OOPs Concepts Scala Abstract Class Scala Trait Scala Access Modifiers Scala Array Scala String Scala Exceptions Scala Collections
Scala Tuple Scala File Handling Scala Multihreading Scala Interview Akka Tutorial PrerequisiteBefore learning Scala, you must have the basic knowledge of C and Java. AudienceOur Scala tutorial is designed to help beginners and professionals. ProblemWe assure that you will not find any problem in this Scala tutorial. But if there is any mistake, please post the problem in contact form.
Next TopicHistory of Scala
|